/* ══════════════════════════════════════════════════════════
   Lilac Zine — homepage theme
   Ported from the "Variant D4" design exploration.
   Only index.html uses this file. Project pages and the
   contact page use quest.css.
   ══════════════════════════════════════════════════════════ */

:root {
  --bg:      #f4f1fa;
  --paper:   #fdfbff;
  --ink:     #2f2545;
  --violet:  #7b5ec7;
  --lilac:   #a48ae0;
  --deep:    #5b3fa8;
  --pale:    #d9c9f5;
  --muted:   #7a7096;
  --body:    #5c5178;
  --chip-a:  #eae2fa;
  --chip-b:  #e6dcf7;
  --gold:    #f2c14e;
}

/* ── base ── */
* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--violet); }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--ink); color: var(--paper);
  padding: 0.7rem 1.2rem; border-radius: 0 0 8px 0; font-weight: 800;
}
.skip-link:focus { left: 0; color: var(--paper); }

.wrap { max-width: 1150px; margin: 0 auto; }

/* ── keyframes ── */
@keyframes stamp-in {
  0%   { transform: scale(1.6) rotate(var(--lr, 0deg)); opacity: 0; }
  60%  { transform: scale(0.92) rotate(var(--lr, 0deg)); opacity: 1; }
  100% { transform: scale(1) rotate(var(--lr, 0deg)); opacity: 1; }
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(-9px) rotate(var(--rot, 0deg)); }
}
@keyframes xp-pop {
  0%   { transform: translateY(0) scale(0.6); opacity: 0; }
  25%  { transform: translateY(-14px) scale(1.1); opacity: 1; }
  100% { transform: translateY(-46px) scale(1); opacity: 0; }
}
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes dash-move { to { stroke-dashoffset: -24; } }
@keyframes check-pop { 0% { transform: scale(0); } 70% { transform: scale(1.3); } 100% { transform: scale(1); } }

/* ── paper grain overlay ── */
.grain {
  position: fixed; inset: 0; z-index: 50; pointer-events: none; opacity: 0.45;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="160"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="2"/><feColorMatrix values="0 0 0 0 0.18 0 0 0 0 0.14 0 0 0 0 0.27 0 0 0 0.05 0"/></filter><rect width="160" height="160" filter="url(%23n)"/></svg>');
}

/* ── nav ── */
.zine-nav {
  position: fixed; top: 0; left: 0; width: 100%; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; z-index: 999;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.zine-nav.is-scrolled {
  background: rgba(244, 241, 250, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 0 rgba(47, 37, 69, 0.08);
}
.nav-brand { display: flex; align-items: center; gap: 0.7rem; }
.nav-die {
  font-size: 2rem; line-height: 1; color: var(--violet);
  display: inline-block; transition: transform 0.15s;
}
.nav-name {
  font-family: 'Patrick Hand', cursive; font-size: 1.25rem;
  letter-spacing: 0.5px; color: var(--ink); white-space: nowrap;
}
.nav-links {
  display: flex; align-items: center; gap: 0.9rem; margin-left: 1.2rem;
  list-style: none; padding: 0;
  font-size: 0.66rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
}
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--violet); }

/* geometry matched 1:1 to the design export's nav pill */
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--violet); color: var(--paper);
  border: 2px solid var(--ink); border-radius: 30px;
  padding: 0.45rem 1.2rem; box-shadow: 2px 2px 0 var(--ink);
  font-size: 0.66rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.nav-cta:hover {
  background: var(--deep); color: var(--paper);
  transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink);
}

/* ── hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 7rem 2rem 4rem;
}
.hero-grid {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: center;
}
.hero-text { display: flex; flex-direction: column; gap: 1.4rem; }

.hero-stamp {
  display: inline-flex; align-self: flex-start;
  background: var(--lilac); color: var(--ink);
  font-family: 'Patrick Hand', cursive; font-size: 0.95rem;
  padding: 0.3rem 1rem; border-radius: 3px;
  box-shadow: 2px 2px 0 var(--ink);
  --lr: -2deg; transform: rotate(-2deg);
  animation: stamp-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}
.hero-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem); font-weight: 800;
  line-height: 1.02; margin: 0; letter-spacing: -0.02em;
}
.hero-name .accent { color: var(--violet); }
.hero-pronouns { font-size: 0.88rem; color: var(--muted); letter-spacing: 0.08em; margin: -0.6rem 0 0; }
.hero-role { font-size: 1.1rem; color: var(--body); max-width: 460px; margin: 0; }
.hero-role strong { color: var(--ink); }
.hero-role .where { color: var(--violet); }
.hero-blurb { font-size: 0.98rem; color: var(--body); max-width: 470px; margin: 0; }
.hero-blurb .hl { color: var(--violet); font-weight: 700; }
.hero-blurb strong { color: var(--ink); }

.chip-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.chip {
  font-size: 0.62rem; font-weight: 800; padding: 0.2rem 0.7rem;
  border: 2px solid var(--ink); border-radius: 20px; background: var(--chip-a);
}
.chip:nth-child(even) { background: var(--chip-b); }

.btn-ink {
  display: inline-flex; align-self: flex-start;
  padding: 0.8rem 1.8rem; background: var(--ink); color: var(--bg);
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 1px; border-radius: 6px;
  box-shadow: 4px 4px 0 var(--violet);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-ink:hover {
  color: var(--bg); transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--violet);
}

/* hero portrait */
.hero-sticker { position: relative; justify-self: center; transition: transform 0.3s ease; }
.hero-die {
  position: absolute; top: -52px; right: -38px; font-size: 5rem; line-height: 1;
  color: var(--lilac); opacity: 0.85; transform: rotate(12deg);
  transition: transform 0.15s; z-index: 0;
}
.hero-die-sm {
  position: absolute; font-size: 3.6rem; line-height: 1; color: var(--pale); z-index: 0;
}
.hero-die-sm.one   { bottom: -34px; left: -52px; --rot: -14deg; transform: rotate(-14deg); animation: bob 7s ease-in-out infinite; }
.hero-die-sm.two   { top: 34%; left: -64px; font-size: 2.4rem; --rot: 8deg; transform: rotate(8deg); animation: bob 5.5s ease-in-out -2s infinite; }
.hero-blob {
  position: absolute; inset: -22px;
  border-radius: 52% 48% 50% 50% / 50% 52% 48% 50%;
  background: linear-gradient(135deg, rgba(164,138,224,0.4), rgba(123,94,199,0.28), rgba(164,138,224,0.32));
  animation: spin-slow 26s linear infinite;
}
.hero-photo {
  position: relative; width: 290px; height: 290px; border-radius: 50%;
  overflow: hidden; border: 6px solid var(--paper);
  box-shadow: 0 0 0 3px var(--lilac), 0 22px 50px rgba(123, 94, 199, 0.3);
  background: radial-gradient(circle at 50% 35%, #f4eeff 50%, var(--pale) 100%);
  animation: bob 6s ease-in-out infinite;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
  filter: saturate(1.02) brightness(1.02);
}
.spark { position: absolute; color: var(--deep); }
.spark.a { bottom: 24px; left: -22px; font-size: 1.1rem; }
.spark.b { top: 38%; right: -30px; font-size: 0.85rem; color: var(--lilac); }
.hero-caption {
  position: absolute; bottom: -44px; right: -10px; margin: 0;
  font-family: 'Patrick Hand', cursive; font-size: 1.15rem;
  color: var(--violet); transform: rotate(-4deg);
}

/* ── shared section furniture ── */
.zine-section { position: relative; padding: 5rem 2rem 4rem; }
.section-head {
  display: flex; align-items: baseline; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.section-head h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800;
  margin: 0; letter-spacing: -0.02em;
}
.scribble {
  font-family: 'Patrick Hand', cursive; font-size: 1.15rem;
  color: var(--violet); transform: rotate(-1deg);
}
.section-intro { font-size: 1rem; color: var(--body); max-width: 560px; margin: -1.6rem 0 2.6rem; }

/* ── quest log ── */
.quest-list {
  position: relative; display: flex; flex-direction: column; gap: 2.4rem;
  /* design is content-box: 1000px of card + 44px thread gutter.
     we're border-box, so the gutter has to be inside the max-width. */
  padding-left: 44px; max-width: 1044px;
}
.quest-thread {
  position: absolute; left: 14px; top: 10px; width: 4px;
  height: calc(100% - 20px); overflow: visible;
}
.quest-thread line { animation: dash-move 1.6s linear infinite; }

.quest { display: block; color: inherit; position: relative; }
.quest-check {
  position: absolute; left: -44px; top: 22px; width: 30px; height: 30px;
  background: var(--shadow, var(--violet)); border: 3px solid var(--ink);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: var(--paper);
  z-index: 3; box-shadow: 2px 2px 0 var(--ink);
}
.quest-card {
  background: var(--paper); border: 2.5px solid var(--ink); border-radius: 18px;
  box-shadow: 6px 6px 0 var(--shadow, var(--violet));
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  display: grid; grid-template-columns: 300px 1fr; overflow: hidden; position: relative;
}
.quest:hover .quest-card {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 9px 11px 0 rgba(47, 37, 69, 0.28);
}
.quest-xp {
  position: absolute; top: 8px; right: 14px;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 0.85rem;
  color: var(--shadow, var(--violet)); opacity: 0; pointer-events: none; z-index: 9;
}
.quest-shot {
  position: relative; aspect-ratio: 16 / 11; overflow: hidden;
  border-right: 2.5px solid var(--ink); background: #ece5f8;
}
.quest-shot img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.06); transition: transform 0.5s;
}
.quest:hover .quest-shot img { transform: scale(1.05); }
.quest-shot.blend img { mix-blend-mode: multiply; }

.quest-body {
  padding: 1.2rem 1.4rem; display: flex; flex-direction: column;
  gap: 0.5rem; justify-content: center;
}
.quest-body h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem; font-weight: 800; margin: 0;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.tag {
  font-size: 0.6rem; font-weight: 800; padding: 0.15rem 0.55rem;
  border: 2px solid var(--ink); border-radius: 20px;
  background: var(--tag-bg, var(--chip-a));
}
.quest-desc { font-size: 0.85rem; color: var(--body); line-height: 1.65; margin: 0; }
.quest-note {
  font-family: 'Patrick Hand', cursive; font-size: 1rem; margin: 0;
  color: var(--note-c, var(--violet)); transform: rotate(var(--note-rot, 0deg));
  align-self: flex-start;
}

/* ── character sheet ── */
.about-grid { display: grid; grid-template-columns: 330px 1fr; gap: 2rem; align-items: start; }

.sheet {
  background: var(--paper); border: 2.5px solid var(--ink); border-radius: 18px;
  padding: 1.4rem; box-shadow: 5px 5px 0 var(--lilac);
  display: flex; flex-direction: column; gap: 1rem;
  transform: rotate(-1deg); position: relative;
}
.sheet-level {
  position: absolute; top: -14px; right: 16px;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 0.62rem;
  background: var(--violet); color: var(--bg); padding: 0.22rem 0.7rem;
  border-radius: 20px; border: 2px solid var(--ink);
  transform: rotate(3deg); box-shadow: 2px 2px 0 var(--ink);
}
.sheet-avatar { position: relative; align-self: center; }
.sheet-avatar > div {
  width: 150px; height: 150px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--ink);
  background: radial-gradient(circle at 50% 40%, #f4eeff 55%, var(--pale) 100%);
}
.sheet-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; }
.sheet-avatar .die {
  position: absolute; bottom: -2px; right: -14px;
  font-size: 1.7rem; color: var(--lilac); transform: rotate(14deg);
}
.sheet-tagline {
  font-family: 'Patrick Hand', cursive; font-size: 1.1rem; color: var(--violet);
  margin: -0.4rem 0 0; text-align: center; transform: rotate(-1deg);
}

.stats { display: flex; flex-direction: column; gap: 0.5rem; }
.stat { display: flex; align-items: center; gap: 0.6rem; }
.stat-name {
  font-weight: 800; letter-spacing: 1px; font-size: 0.6rem;
  text-transform: uppercase; color: var(--muted); width: 74px; flex-shrink: 0;
}
.stat-track {
  flex: 1; height: 12px; border: 2px solid var(--ink); border-radius: 10px;
  background: var(--bg); overflow: hidden;
}
.stat-fill {
  height: 100%; width: 0%; background: var(--violet);
  transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-fill.b { background: var(--lilac); transition-delay: 0.15s; }
.stat-fill.c { background: var(--deep); transition-delay: 0.3s; }
.stat-num { font-family: 'Patrick Hand', cursive; font-size: 0.85rem; color: var(--violet); }
.stat-num.b { color: var(--lilac); }
.stat-num.c { color: var(--deep); }

.sheet-rows {
  display: flex; flex-direction: column; gap: 0.45rem; font-size: 0.85rem;
  border-top: 2px dashed var(--pale); padding-top: 0.9rem;
}
.sheet-row { display: flex; justify-content: space-between; gap: 1rem; }
.sheet-key {
  font-weight: 800; letter-spacing: 1px; font-size: 0.62rem;
  text-transform: uppercase; color: var(--muted);
}
.sheet-val { font-weight: 700; }
.sheet-val.accent { color: var(--violet); }

.sheet-langs { display: flex; flex-direction: column; gap: 0.4rem; }

.about-copy { display: flex; flex-direction: column; gap: 1.4rem; }
.about-copy > p { font-size: 1.02rem; color: var(--body); line-height: 1.85; margin: 0; }
.about-copy .hl { color: var(--violet); font-weight: 700; }
.about-copy strong { color: var(--ink); }

.panel {
  background: var(--paper); border: 2.5px solid var(--ink); border-radius: 18px;
  padding: 1.2rem 1.4rem; box-shadow: 5px 5px 0 var(--violet); transform: rotate(0.6deg);
}
.panel.alt { box-shadow: 5px 5px 0 var(--lilac); transform: rotate(-0.5deg); }
.panel-label {
  font-weight: 800; letter-spacing: 1px; font-size: 0.62rem;
  text-transform: uppercase; color: var(--muted);
}
.panel .tag-row { margin-top: 0.6rem; }
.panel .tag { font-size: 0.66rem; padding: 0.2rem 0.7rem; background: var(--chip-b); }

.inventory { display: flex; flex-wrap: wrap; gap: 0.9rem 1.2rem; margin-top: 0.8rem; }
.inv-item { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; width: 52px; }
.inv-item img {
  width: 26px; height: 26px; object-fit: contain; opacity: 0.85; transition: transform 0.2s, opacity 0.2s;
}
.inv-item:hover img { transform: translateY(-2px); opacity: 1; }
.inv-item span {
  font-size: 0.56rem; font-weight: 700; color: var(--muted);
  text-align: center; line-height: 1.2;
}

/* ── workshops ── */
.workshop-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-bottom: 2rem;
}
.workshop {
  grid-column: var(--span, auto);
  background: var(--paper); border: 2.5px solid var(--ink); border-radius: 18px;
  padding: 1.4rem; box-shadow: 5px 5px 0 var(--shadow, var(--lilac));
  display: flex; flex-direction: column; gap: 0.6rem;
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.workshop:hover { transform: rotate(0deg) translateY(-4px); }
.workshop-num {
  font-family: 'Patrick Hand', cursive; font-size: 0.95rem; color: var(--shadow, var(--lilac));
}
.workshop h3 {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.3rem; font-weight: 800; margin: 0;
}
.workshop p { font-size: 0.82rem; color: var(--body); line-height: 1.65; margin: 0; }
.workshop ul {
  padding-left: 1.1rem; margin: 0.2rem 0 0;
  display: flex; flex-direction: column; gap: 0.2rem;
}
.workshop li { font-size: 0.78rem; color: var(--body); line-height: 1.55; }
.workshop-cta {
  margin-top: 0.4rem; align-self: flex-start;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-size: 0.78rem; letter-spacing: 0.3px; color: var(--violet);
  transition: transform 0.2s ease;
}
a.workshop:hover .workshop-cta { transform: translateX(4px); }

.info-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2.5rem;
}
.info {
  background: var(--paper); border: 2.5px solid var(--ink); border-radius: 14px;
  padding: 1rem 1.2rem; display: flex; align-items: center; gap: 0.8rem;
}
.info-icon { font-size: 1.4rem; }
.info-label {
  font-size: 0.6rem; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted); margin: 0;
}
.info-value { font-size: 0.78rem; font-weight: 700; color: var(--ink); margin: 0; line-height: 1.4; }

.faqs { display: flex; flex-direction: column; gap: 0.7rem; max-width: 820px; }
.faqs details {
  background: var(--paper); border: 2.5px solid var(--ink); border-radius: 14px; overflow: hidden;
}
.faqs summary {
  padding: 0.9rem 1.3rem; cursor: pointer; font-size: 0.9rem; font-weight: 800;
  list-style: none; display: flex; justify-content: space-between;
  align-items: center; user-select: none;
}
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary .plus { font-size: 1.2rem; color: var(--violet); }
.faqs details[open] summary .plus { transform: rotate(45deg); }
.faqs p { padding: 0 1.3rem 1rem; font-size: 0.85rem; color: var(--body); line-height: 1.7; margin: 0; }

.book-banner {
  margin-top: 2.5rem; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--violet), var(--deep));
  border: 2.5px solid var(--ink); border-radius: 18px;
  padding: 1.6rem 1.9rem; box-shadow: 6px 6px 0 var(--ink);
}
.book-banner .scribble { color: var(--pale); }
.book-banner h3 {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.5rem;
  font-weight: 800; color: var(--paper); margin: 0;
}
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-size: 0.85rem; letter-spacing: 1px; padding: 0.85rem 1.7rem;
  border-radius: 8px; border: 2.5px solid var(--ink); box-shadow: 0 4px 0 var(--ink);
  transition: transform 0.15s, box-shadow 0.15s; white-space: nowrap;
}
.btn-gold:hover { color: var(--ink); transform: translateY(3px); box-shadow: 0 1px 0 var(--ink); }

/* ── closing CTA ── */
.cta { text-align: center; padding: 4rem 2rem 6rem; position: relative; }
.cta-inner {
  max-width: 540px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
}
.cta h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800;
  margin: 0; letter-spacing: -0.02em;
}
.cta .marker { background: linear-gradient(transparent 55%, var(--pale) 55%); padding: 0 0.1em; }
.cta p { font-size: 0.98rem; color: var(--body); max-width: 420px; margin: 0; }
.btn-violet {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2.4rem; background: var(--violet); color: var(--paper);
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700;
  font-size: 0.92rem; letter-spacing: 1px; border-radius: 6px;
  box-shadow: 4px 4px 0 var(--ink); transition: transform 0.15s, box-shadow 0.15s;
}
.btn-violet:hover {
  color: var(--paper); transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink);
}

/* ── footer ── */
.zine-footer {
  border-top: 2.5px solid var(--ink); background: var(--paper); padding: 2.4rem 2rem;
}
.footer-inner {
  max-width: 1150px; margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 0.7rem; }
.footer-die { font-size: 1.7rem; color: var(--violet); }
.footer-brand > div { display: flex; flex-direction: column; gap: 0.1rem; }
.footer-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 0.95rem; }
.footer-role { font-size: 0.72rem; color: var(--muted); }
.footer-links {
  display: flex; align-items: center; gap: 1.3rem; list-style: none; padding: 0; margin: 0;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--violet); }
.footer-copy { font-size: 0.7rem; letter-spacing: 1px; color: #a99cc8; margin: 0; }

/* ── responsive ── */
@media (max-width: 980px) {
  .quest-card { grid-template-columns: 220px 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .sheet { max-width: 400px; }
  .workshop-grid { grid-template-columns: repeat(2, 1fr); }
  /* the inline --span:span 2 on card 05 would leak past the narrower grid */
  .workshop { grid-column: auto; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .zine-nav { padding: 0 0.9rem; }
  /* drop the wordmark, not the links — the sections still need to be reachable */
  .nav-name { display: none; }
  .nav-links { margin-left: 0.4rem; gap: 0.7rem; font-size: 0.6rem; }
  /* the pill already goes to contact — drop the duplicate link on small screens */
  .nav-contact { display: none; }
  .nav-die { font-size: 1.6rem; }
  .nav-cta { padding: 0.4rem 0.8rem; font-size: 0.58rem; letter-spacing: 1px; }
  .hero { padding: 6rem 1.4rem 3rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 4rem; }
  .hero-sticker { order: -1; }
  .hero-photo { width: 220px; height: 220px; }
  .hero-die { font-size: 3.4rem; top: -30px; right: -18px; }
  .hero-die-sm.one { bottom: -22px; left: -26px; font-size: 2.6rem; }
  .hero-die-sm.two { left: -30px; font-size: 1.8rem; }
  .zine-section { padding: 3.5rem 1.4rem 2.5rem; }
  .quest-list { padding-left: 0; }
  .quest-thread { display: none; }
  .quest-check { left: auto; right: 12px; top: -12px; }
  .quest-card { grid-template-columns: 1fr; transform: rotate(0deg); }
  .quest:hover .quest-card { transform: translateY(-4px); }
  .quest-shot { border-right: none; border-bottom: 2.5px solid var(--ink); }
  .workshop-grid, .info-grid { grid-template-columns: 1fr; }
  .book-banner { padding: 1.3rem 1.4rem; }
  .footer-inner { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
