/* ── PAGE HERO: INK ── */
.page-hero { background: var(--ink); border-bottom: var(--b); padding: clamp(3.5rem,9vw,7rem) clamp(1rem,5vw,3rem); }
.page-hero .label { color: rgba(242,232,213,.45); }
.page-hero-title { font-size: clamp(40px,6vw,72px); color: var(--paper); }
.page-hero-sub { font-size: 16px; color: rgba(242,232,213,.65); margin-top: 16px; max-width: 520px; line-height: 1.7; }

/* ── INTRO ── */
.s-intro { background: var(--paper); border-bottom: var(--b); }
.intro-lead { font-size: clamp(18px,2.5vw,24px); font-family: 'Paytone One', sans-serif; color: var(--ink); max-width: 700px; line-height: 1.35; margin-bottom: 20px; }
.intro-body { font-size: 15px; color: var(--green); max-width: 640px; line-height: 1.75; }

/* ── WIKI ENTRIES ── */
.s-wiki { background: var(--paper); }
.wiki-entry { display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: start; padding: clamp(2.5rem,6vw,5rem) clamp(1rem,5vw,3rem); border-top: var(--b); max-width: 1200px; margin: 0 auto; }
.wiki-entry:nth-child(even) .wiki-illo { order: 2; }
.wiki-entry:nth-child(even) .wiki-text { order: 1; }
.wiki-illo { border: var(--b); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.wiki-illo svg { width: 72%; height: 72%; }
.wiki-tag { display: inline-flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.tag { font-weight: 600; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; border: 1.5px solid var(--ink); padding: 4px 10px; color: var(--ink); }
.tag.red { background: var(--red); color: var(--paper); border-color: var(--red); }
.wiki-name { font-size: clamp(28px,4vw,48px); color: var(--ink); margin-bottom: 16px; }
.wiki-meaning { font-size: 15px; color: var(--ink); line-height: 1.75; margin-bottom: 24px; }
.wiki-products-label { font-weight: 600; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.wiki-products-list { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; }
.wiki-products-list li { font-size: 13px; font-weight: 500; color: var(--ink); background: var(--yellow); border: 1.5px solid var(--ink); padding: 4px 12px; }

/* ── PLACEHOLDER ENTRY ── */
.wiki-placeholder { border-top: var(--b); padding: clamp(2rem,5vw,4rem) clamp(1rem,5vw,3rem); max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 32px; }
.placeholder-box { width: 100px; height: 100px; border: var(--b); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.placeholder-title { font-family: 'Paytone One', sans-serif; font-size: 22px; color: rgba(34,28,20,.3); margin-bottom: 8px; }
.placeholder-sub { font-size: 13px; color: rgba(34,28,20,.35); }

/* ── CTA BOTTOM ── */
.s-cta { background: var(--red); border-top: var(--b); text-align: center; }
.s-cta .sec-title { color: var(--paper); }
.s-cta .label { color: rgba(242,232,213,.55); }

@media (max-width: 768px) {
  .wiki-entry { grid-template-columns: 1fr; gap: 32px; }
  .wiki-entry:nth-child(even) .wiki-illo { order: 0; }
  .wiki-entry:nth-child(even) .wiki-text { order: 0; }
  .wiki-illo { max-width: 240px; }
}
