:root {
  --ink: #1c2430;
  --ink-soft: #3a4657;
  --cream: #faf6ef;
  --cream-2: #f3ece0;
  --gold: #b98a3c;
  --gold-soft: #d8b877;
  --line: #e4dccd;
  --white: #ffffff;
  --ok: #2f7d5b;
  --err: #b23b3b;
  --shadow: 0 10px 30px rgba(28, 36, 48, 0.08);
  --radius: 16px;
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: "Georgia", serif; line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; font-size: 1.25rem; letter-spacing: 1px; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-soft), var(--gold));
  display: grid; place-items: center; color: #fff; font-size: 1rem;
}
.brand b { font-weight: 700; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--ink-soft); font-size: .95rem; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.btn {
  display: inline-block; border: none; cursor: pointer;
  background: var(--ink); color: #fff; padding: 12px 22px;
  border-radius: 999px; font-size: .95rem; font-family: inherit;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { background: #000; transform: translateY(-1px); text-decoration: none; }
.btn.gold { background: var(--gold); }
.btn.gold:hover { background: #a2762f; }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn.ghost:hover { background: var(--cream-2); }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 60px; position: relative; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: .72rem; color: var(--gold); margin-bottom: 14px; }
.hero p.lead { font-size: 1.15rem; max-width: 34em; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.hero-art {
  aspect-ratio: 4/5; border-radius: var(--radius); box-shadow: var(--shadow);
  background: linear-gradient(135deg, #e9dcc4, #cbb489);
  display: grid; place-items: center; color: #6b5a3a; text-align: center; padding: 24px;
  position: relative; overflow: hidden;
}
.hero-art .hero-img {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius);
  display: block;
}
.hero-art .frame {
  width: 78%; aspect-ratio: 1/1; border-radius: 10px; background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.12); display: grid; place-items: center;
  font-size: .85rem; color: #9a8a6a; border: 6px solid #fff;
}
.hero-art .badge {
  position: absolute; bottom: 18px; right: 18px; background: var(--ink); color: #fff;
  padding: 8px 14px; border-radius: 999px; font-size: .78rem; letter-spacing: .5px;
}

/* ---------- Sections ---------- */
section { padding: 56px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.step .num {
  width: 38px; height: 38px; border-radius: 50%; background: var(--cream-2);
  color: var(--gold); display: grid; place-items: center; font-weight: 700; margin-bottom: 14px;
}

/* ---------- Offerings ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  gap: 26px;
  justify-content: center;
}
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .18s ease;
}
.card:hover { transform: translateY(-4px); }
.card .thumb {
  aspect-ratio: 4/3; background: linear-gradient(135deg, #efe6d4, #dcc9a4);
  display: grid; place-items: center; color: #7a6a4a; font-size: .8rem; letter-spacing: 1px;
  overflow: hidden; position: relative;
}
.card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.card .price { font-size: 1.5rem; color: var(--ink); font-weight: 700; margin: 6px 0 12px; }
.card .meta { font-size: .82rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; }
.card .blurb { flex: 1; }
.card .btn { width: 100%; text-align: center; }

/* ---------- Order form ---------- */
.order-shell {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 34px; max-width: 820px; margin: 0 auto;
}
.progress { display: flex; gap: 10px; margin-bottom: 28px; }
.progress .dot { flex: 1; height: 6px; border-radius: 999px; background: var(--cream-2); }
.progress .dot.on { background: var(--gold); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; color: var(--ink-soft); margin-bottom: 6px; letter-spacing: .3px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 1rem; background: var(--cream); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
}
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.row3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }
.hint { font-size: .8rem; color: #8a7f6a; margin-top: 6px; }
.drop {
  border: 2px dashed var(--line); border-radius: 14px; padding: 34px; text-align: center;
  background: var(--cream); cursor: pointer; transition: border-color .15s ease, background .15s ease;
}
.drop:hover, .drop.over { border-color: var(--gold); background: #fff; }
.drop .big { font-size: 1.05rem; color: var(--ink); }
.preview { margin-top: 16px; display: none; align-items: center; gap: 16px; }
.preview img { width: 96px; height: 96px; object-fit: cover; border-radius: 10px; border: 1px solid var(--line); }
.warn { background: #fff6e6; border: 1px solid #f0d9a8; color: #8a6a1f; padding: 10px 14px; border-radius: 10px; font-size: .85rem; margin-top: 12px; }
.actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; }
.summary { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 18px; margin-bottom: 20px; }
.summary .line { display: flex; justify-content: space-between; padding: 4px 0; }
.summary .line.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 12px; font-weight: 700; font-size: 1.15rem; }
.hidden { display: none !important; }
.status-box { text-align: center; padding: 20px 0; }
.status-box .tick { font-size: 3rem; }
.pill { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: .78rem; letter-spacing: .5px; }
.pill.ok { background: #e6f4ec; color: var(--ok); }
.pill.warn { background: #fff6e6; color: #8a6a1f; }
.pill.err { background: #fbeaea; color: var(--err); }
.spinner {
  width: 34px; height: 34px; border: 3px solid var(--cream-2); border-top-color: var(--gold);
  border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 14px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Payment methods ---------- */
.pay-methods { display: grid; gap: 12px; margin-top: 14px; }
.pay-method {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: 12px; padding: 14px 16px;
  background: #fff; transition: border-color .15s, box-shadow .15s, background .15s;
}
.pay-method:hover { border-color: var(--gold); }
.pay-method.on { border-color: var(--gold); background: #fffdf7; box-shadow: 0 4px 14px rgba(0,0,0,.05); }
.pay-method input { margin-top: 3px; accent-color: var(--gold); width: 18px; height: 18px; }
.pm-body { flex: 1; }
.pm-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.pm-top b { font-size: 1rem; }
.pm-fee { font-size: .78rem; color: #8a7f6a; white-space: nowrap; }
.pm-detail { font-size: .85rem; color: var(--ink-soft); margin-top: 3px; }

/* ---------- Collection teasers (Halloween/Anime/Movie/LDS/Educational) ---------- */
.collection-teaser { padding: 60px 0; background: linear-gradient(180deg, #241f1a, #1c2430); color: #f3ece0; }
.collection-teaser .nt-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.collection-teaser h2 { color: #fff; }
.collection-teaser p { color: #c9c2b6; }
.collection-teaser .eyebrow { color: var(--gold-soft); }
.collection-teaser .nt-art { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.collection-teaser .nt-art img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
}
.collection-teaser .nt-art img:nth-child(2) { transform: translateY(-14px); }

/* ---------- Footer ---------- */
footer.site { background: var(--ink); color: #cfd6df; padding: 46px 0 30px; margin-top: 40px; }
footer.site a { color: var(--gold-soft); }
footer.site .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
footer.site h4 { color: #fff; }
footer.site .fine { border-top: 1px solid #2c3644; margin-top: 26px; padding-top: 18px; font-size: .8rem; color: #8b96a5; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { max-width: 420px; }
  .steps, .grid { grid-template-columns: 1fr; }
  .row2, .row3 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .collection-teaser .nt-inner { grid-template-columns: 1fr; }
  footer.site .cols { grid-template-columns: 1fr; }
  .news-shell { grid-template-columns: 1fr; }
}

/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--ink); color: #f4efe6; text-align: center;
  font-size: .85rem; letter-spacing: .3px; padding: 9px 16px;
}
.promo-bar b { color: var(--gold-soft); }

/* ---------- Social proof ---------- */
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; font-size: 1rem; }
#proof .card .body { padding: 26px; }
#proof .blurb { font-style: italic; color: var(--ink); }

/* ---------- Newsletter ---------- */
.news-shell {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 40px;
}
.news-shell h2 { margin: 6px 0 10px; }
.news-form { display: flex; flex-direction: column; gap: 12px; }
.news-form input {
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px;
  font-size: 1rem; font-family: inherit; background: #fff;
}
.news-form input:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.news-msg { font-size: .9rem; min-height: 1.2em; }
.news-msg.ok { color: #2e7d32; }
.news-msg.err { color: #c62828; }

/* ---------- Footer social ---------- */
footer.site .social { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 16px; }
footer.site .social a { color: var(--gold-soft); font-size: .85rem; letter-spacing: .5px; }
footer.site .social a:hover { color: #fff; }

/* ---------- Print ---------- */
@media print {
  header.site, .hero-cta, footer.site, .btn, .promo-bar, #newsletter { display: none !important; }
  body { background: #fff; }
  .card, .order-shell { box-shadow: none; }
}

/* ---------- Collection teaser: mobile polish ---------- */
@media (max-width: 640px) {
  .collection-teaser { padding: 44px 0; }
  .collection-teaser .nt-art { gap: 8px; }
  .collection-teaser .nt-art img { border-radius: 9px; }
  .collection-teaser .nt-art img:nth-child(2) { transform: translateY(-8px); }
  .collection-teaser h2 { font-size: 1.5rem; }
  .collection-teaser p { font-size: .96rem; }
}

/* Wholesale tier chips */
.tier-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.tier-chip {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(28,124,84,.10);
  border: 1px solid rgba(28,124,84,.35);
  color: #1c7c54;
  font-size: .85rem;
  font-weight: 600;
}
.tier-chip b { font-weight: 800; }
