:root {
  --ivory: #f7f1e7;
  --paper: #fffaf2;
  --ink: #1f2a24;
  --muted: #6f6a61;
  --plum: #4f3a67;
  --deep-plum: #261833;
  --jade: #2f5d50;
  --rose: #c98f9d;
  --gold: #c6a15b;
  --line: rgba(31, 42, 36, 0.16);
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--ivory); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.topbar { position: sticky; top: 0; z-index: 20; background: rgba(247, 241, 231, 0.92); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.nav { max-width: 1180px; margin: 0 auto; padding: 18px 22px; display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.brand { font-family: Georgia, "Times New Roman", serif; font-size: 26px; color: var(--deep-plum); }
.brand small { display: block; margin-top: -7px; color: var(--muted); font-family: Inter, sans-serif; font-size: 11px; letter-spacing: 0.08em; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px; font-size: 14px; }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--plum); }
.hero { max-width: 1180px; margin: 0 auto; padding: 72px 22px 46px; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr); gap: 46px; align-items: center; }
.kicker { color: var(--jade); font-weight: 700; font-size: 14px; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; color: var(--deep-plum); }
h1 { font-size: clamp(42px, 6vw, 76px); margin: 14px 0 22px; }
h2 { font-size: clamp(30px, 4vw, 48px); margin: 0 0 18px; }
h3 { font-size: 24px; margin: 0 0 10px; }
.lead { color: var(--muted); font-size: 19px; max-width: 670px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 20px; border-radius: 999px; border: 1px solid var(--deep-plum); font-weight: 750; transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease; }
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--deep-plum); color: #fff; }
.button.gold { background: var(--gold); border-color: var(--gold); color: #22180c; }
.button.ghost { background: transparent; }
.ritual-board { background: #efe4d4; border: 1px solid rgba(79, 58, 103, 0.2); padding: 18px; box-shadow: 0 26px 70px rgba(38, 24, 51, 0.16); }
.ritual-board img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; background: #e9dfd2; }
.caption { display: flex; justify-content: space-between; gap: 12px; padding-top: 14px; color: var(--muted); font-size: 13px; }
.band { border-top: 1px solid var(--line); padding: 64px 22px; }
.band.dark { background: var(--deep-plum); color: #f7f1e7; }
.band.dark h2, .band.dark h3 { color: #fff7e9; }
.inner { max-width: 1180px; margin: 0 auto; }
.section-head { max-width: 780px; margin-bottom: 32px; }
.grid-5, .grid-3, .grid-2 { display: grid; gap: 18px; }
.grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.intention, .product, .note, .quiz-panel { background: var(--paper); border: 1px solid var(--line); padding: 22px; }
.intention { min-height: 230px; }
.intention strong, .price { color: var(--plum); }
.product { display: flex; flex-direction: column; gap: 16px; }
.product img { aspect-ratio: 1 / 1; object-fit: cover; border: 1px solid rgba(31, 42, 36, 0.1); background: #eadfce; }
.product p, .note p { color: var(--muted); margin: 0; }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.pill { border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; color: var(--muted); font-size: 13px; }
.story-columns { columns: 2 330px; column-gap: 44px; color: var(--muted); }
.quiz-options { display: grid; gap: 10px; }
.quiz-options button { width: 100%; text-align: left; border: 1px solid var(--line); background: #fffaf2; padding: 14px 16px; color: var(--ink); font: inherit; cursor: pointer; }
.quiz-options button:hover { border-color: var(--plum); background: #f2e9ef; }
.result-box { margin-top: 18px; border-left: 4px solid var(--gold); padding: 16px; background: #fff7e8; color: var(--muted); }
.footer { padding: 46px 22px; background: #18111f; color: #d8d0c7; }
.footer .inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.fineprint { font-size: 13px; color: #a59a91; max-width: 760px; }
@media (max-width: 900px) {
  .hero, .grid-5, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { justify-content: flex-start; }
}
