/* =========================================================
   BONEMEAL — landing page styles
   Palette: deep ink black, bone cream, oxblood, sallow yellow
   ========================================================= */

:root {
  --ink: #0a0a08;
  --ink-2: #131310;
  --ink-3: #1c1c17;
  --bone: #e8dfb8;
  --bone-soft: #cfc59a;
  --bone-dim: #8c8466;
  --blood: #6e1014;
  --blood-2: #3a0508;
  --sallow: #c9b35a;
  --rust: #7a3a16;
  --line: rgba(232, 223, 184, 0.18);
  --line-strong: rgba(232, 223, 184, 0.4);

  --serif: "Cormorant Garamond", "Eczar", Georgia, serif;
  --display: "Eczar", "Cormorant Garamond", Georgia, serif;
  --type: "Special Elite", "Courier New", monospace;
}

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

html, body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  cursor: none;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(110, 16, 20, 0.08), transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(201, 179, 90, 0.04), transparent 50%),
    var(--ink);
}

@media (max-width: 900px) { body { cursor: auto; } .cursor { display: none; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--bone); }

/* ===== Custom cursor ===== */
.cursor {
  position: fixed; top: 0; left: 0; width: 28px; height: 28px;
  border: 1px solid var(--bone-soft);
  border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, background 0.25s, border-color 0.25s;
  mix-blend-mode: difference;
}
.cursor::after {
  content: ""; position: absolute; inset: 50%; width: 3px; height: 3px;
  background: var(--bone); border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor.hover { width: 56px; height: 56px; background: rgba(232, 223, 184, 0.08); }

/* ===== Film grain + vignette ===== */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 200;
  opacity: 0.18; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  animation: grainShift 1.6s steps(6) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-2%, 1%); }
  40%  { transform: translate(2%, -2%); }
  60%  { transform: translate(-1%, 2%); }
  80%  { transform: translate(1%, -1%); }
  100% { transform: translate(0,0); }
}

.vignette {
  position: fixed; inset: 0; pointer-events: none; z-index: 150;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.7) 100%);
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 36px;
  font-family: var(--type); font-size: 12px; letter-spacing: 0.18em;
  color: var(--bone-soft);
  mix-blend-mode: difference;
}
.nav-mark { display: flex; align-items: center; gap: 10px; color: var(--bone); }
.nav-mark svg { color: var(--bone); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--bone); }
.nav-cta {
  border: 1px solid var(--bone-soft); padding: 8px 14px;
}
.nav-cta:hover { background: var(--bone); color: var(--ink) !important; }

@media (max-width: 720px) {
  .nav { padding: 14px 18px; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: contrast(1.05) saturate(0.7) brightness(0.65);
}
.hero-tint {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(10,10,8,0.85) 90%),
    linear-gradient(180deg, rgba(10,10,8,0.4) 0%, rgba(10,10,8,0.2) 50%, rgba(10,10,8,0.95) 100%);
}
.hero-scan {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px, transparent 3px,
    rgba(0,0,0,0.2) 3px, rgba(0,0,0,0.2) 4px
  );
  mix-blend-mode: multiply; opacity: 0.5;
}
.hero-content {
  position: relative; z-index: 3; text-align: center;
  padding: 0 24px; max-width: 1100px;
}
.hero-meta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--type); font-size: 11px; letter-spacing: 0.32em;
  color: var(--bone-soft); margin-bottom: 30px;
  opacity: 0; animation: fadeUp 1.4s 0.3s forwards;
}
.hero-meta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blood); box-shadow: 0 0 12px var(--blood);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.86; letter-spacing: -0.04em;
  color: var(--bone);
  display: flex; justify-content: center; flex-wrap: wrap;
  text-shadow: 0 0 60px rgba(0,0,0,0.6);
}
.t-line {
  display: inline-block; position: relative;
  opacity: 0; transform: translateY(40px);
  animation: titleIn 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.t-line:nth-child(1) { animation-delay: 0.5s; }
.t-line:nth-child(2) { animation-delay: 0.7s; color: var(--bone); }
.t-line::before {
  content: attr(data-text);
  position: absolute; left: 0; top: 0;
  color: var(--blood); opacity: 0;
  text-shadow: 2px 0 0 var(--blood);
  animation: glitch 7s 3s infinite;
  pointer-events: none;
}
@keyframes glitch {
  0%, 96%, 100% { opacity: 0; transform: translate(0,0); }
  96.5% { opacity: 0.6; transform: translate(-3px, 1px); }
  97% { opacity: 0; }
  97.5% { opacity: 0.6; transform: translate(2px, -1px); }
  98% { opacity: 0; }
  98.5% { opacity: 0.4; transform: translate(-1px, 2px); }
}
@keyframes titleIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(16px, 1.6vw, 22px); color: var(--bone-soft);
  margin-top: 24px; max-width: 560px; margin-left: auto; margin-right: auto;
  opacity: 0; animation: fadeUp 1.4s 1s forwards;
}

.hero-byline {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 36px;
  font-family: var(--type); font-size: 13px; letter-spacing: 0.28em;
  color: var(--bone);
  opacity: 0; animation: fadeUp 1.4s 1.2s forwards;
}
.hero-byline .rule {
  width: 60px; height: 1px; background: var(--bone-soft);
}

.hero-cta {
  display: flex; gap: 14px; justify-content: center; margin-top: 44px;
  opacity: 0; animation: fadeUp 1.4s 1.4s forwards;
  flex-wrap: wrap;
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.btn {
  font-family: var(--type); font-size: 12px; letter-spacing: 0.2em;
  padding: 16px 28px; border: 1px solid var(--bone-soft);
  display: inline-block; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.btn-primary { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: var(--blood); transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.7,0,0.3,1);
  z-index: 0;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { color: var(--bone); }
.btn-primary:hover::before { transform: translateY(0); }
.btn-ghost:hover { background: var(--bone); color: var(--ink); }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--type); font-size: 10px; letter-spacing: 0.32em;
  color: var(--bone-soft);
  opacity: 0; animation: fadeUp 1.4s 1.8s forwards;
}
.scroll-line {
  width: 1px; height: 50px; background: linear-gradient(180deg, var(--bone-soft), transparent);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ""; position: absolute; top: -20px; left: 0; width: 1px; height: 20px;
  background: var(--bone);
  animation: scrollDown 2.2s infinite;
}
@keyframes scrollDown {
  to { transform: translateY(70px); }
}

.corner {
  position: absolute; z-index: 4; color: var(--bone-soft); opacity: 0.6;
  font-size: 14px; animation: blink 4s infinite;
}
.corner.tl { top: 70px; left: 36px; }
.corner.tr { top: 70px; right: 36px; animation-delay: 1s; }
.corner.bl { bottom: 36px; left: 36px; animation-delay: 2s; }
.corner.br { bottom: 36px; right: 36px; animation-delay: 3s; }
@keyframes blink {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.15; }
}

/* ===== Press marquee ===== */
.press {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
}
.marquee { overflow: hidden; }
.marquee-track {
  display: flex; gap: 50px; align-items: center;
  white-space: nowrap;
  font-family: var(--display); font-style: italic;
  font-size: clamp(20px, 2.4vw, 34px);
  color: var(--bone);
  animation: marquee 28s linear infinite;
}
.marquee-track .bullet { color: var(--blood); font-size: 0.7em; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about {
  position: relative; padding: 140px 36px;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
}
.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 90px;
  align-items: center;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about { padding: 90px 24px; }
}
.about-cover {
  position: relative; perspective: 1200px;
}
.cover-img {
  width: 100%; max-width: 440px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.9),
    0 0 0 1px rgba(232,223,184,0.1);
  transform: rotateY(-6deg) rotateX(2deg);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative; z-index: 2;
}
.about-cover:hover .cover-img { transform: rotateY(0) rotateX(0); }
.cover-glow {
  position: absolute; inset: -40px; z-index: 1;
  background: radial-gradient(circle at center, rgba(110,16,20,0.4), transparent 60%);
  filter: blur(40px);
  animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.cover-shadow {
  position: absolute; bottom: -20px; left: 10%; right: 10%;
  height: 30px; background: rgba(0,0,0,0.7);
  filter: blur(20px); z-index: 0;
}
.cover-tag {
  position: absolute; top: 24px; right: -30px; z-index: 3;
  background: var(--bone); color: var(--ink);
  font-family: var(--type); font-size: 10px; letter-spacing: 0.24em;
  padding: 8px 14px; transform: rotate(4deg);
  box-shadow: 0 4px 16px rgba(0,0,0,0.6);
}

.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--type); font-size: 11px; letter-spacing: 0.32em;
  color: var(--blood); text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow-line {
  width: 40px; height: 1px; background: var(--blood);
}
.about-copy h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--bone); margin-bottom: 26px;
  text-wrap: balance;
}
.lead { font-size: 20px; line-height: 1.6; color: var(--bone-soft); margin-bottom: 18px; }
.about-copy p { color: var(--bone-soft); margin-bottom: 18px; }
.dropcap {
  font-family: var(--display); float: left;
  font-size: 64px; line-height: 0.9; padding: 4px 10px 0 0;
  color: var(--bone); font-weight: 600;
}

.genre-tags {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px;
  margin: 28px 0;
}
.genre-tags li {
  font-family: var(--type); font-size: 11px; letter-spacing: 0.18em;
  padding: 7px 12px; border: 1px solid var(--line-strong);
  color: var(--bone-soft); transition: all 0.25s;
}
.genre-tags li:hover { background: var(--blood); color: var(--bone); border-color: var(--blood); }

.meta-list {
  margin-top: 32px; border-top: 1px solid var(--line);
}
.meta-list > div {
  display: flex; gap: 24px; padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--type); font-size: 13px;
}
.meta-list dt { color: var(--bone-dim); width: 90px; letter-spacing: 0.16em; text-transform: uppercase; font-size: 11px; }
.meta-list dd { color: var(--bone); flex: 1; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== COUNTDOWN ===== */
.countdown {
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 24px;
  position: relative;
  text-align: center;
}
.countdown::before, .countdown::after {
  content: "✶"; position: absolute; left: 50%;
  color: var(--blood); font-size: 18px;
}
.countdown::before { top: -10px; transform: translateX(-50%); background: var(--ink); padding: 0 12px; }
.countdown::after { bottom: -10px; transform: translateX(-50%); background: var(--ink); padding: 0 12px; }
.cd-label {
  font-family: var(--type); font-size: 11px; letter-spacing: 0.4em;
  color: var(--bone-dim); margin-bottom: 28px;
}
.cd-grid {
  display: flex; justify-content: center; gap: clamp(20px, 5vw, 80px);
  flex-wrap: wrap;
}
.cd-grid > div {
  display: flex; flex-direction: column; align-items: center;
}
.cd-num {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(48px, 9vw, 110px);
  color: var(--bone); line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 30px rgba(232,223,184,0.15);
}
.cd-cap {
  font-family: var(--type); font-size: 11px; letter-spacing: 0.32em;
  color: var(--bone-dim); margin-top: 10px;
}
.cd-date {
  font-family: var(--display); font-style: italic;
  font-size: 22px; color: var(--bone-soft); margin-top: 36px;
}

/* ===== EXCERPT ===== */
.excerpt {
  position: relative; padding: 160px 24px;
  overflow: hidden; isolation: isolate;
}
.ex-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
  filter: contrast(1.1) saturate(0.6) brightness(0.4);
}
.ex-video-tint {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(10,10,8,0.7) 0%, rgba(10,10,8,0.95) 80%),
    linear-gradient(180deg, var(--ink) 0%, transparent 20%, transparent 80%, var(--ink) 100%);
}
.ex-grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='2' numOctaves='1' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.15; z-index: 0;
}

.excerpt-inner {
  position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; text-align: center;
}
.ex-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--type); font-size: 11px; letter-spacing: 0.32em;
  color: var(--blood); margin-bottom: 50px;
}
.ex-eyebrow .eyebrow-line { background: var(--blood); }

.ex-card {
  position: relative; padding: 80px clamp(24px, 6vw, 80px);
  border: 1px solid var(--line-strong);
}
.ex-card-bg {
  position: absolute; inset: 0;
  background: rgba(10,10,8,0.65);
  backdrop-filter: blur(2px);
  z-index: -1;
}

.ex-quote {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.45; color: var(--bone);
  font-weight: 400; font-style: italic;
  text-wrap: balance;
}
.ex-mark {
  font-family: var(--display); font-size: 1.4em;
  color: var(--blood); font-style: normal;
  vertical-align: -0.1em;
}
.ex-quote em {
  color: var(--sallow);
  font-style: italic;
  text-shadow: 0 0 20px rgba(201,179,90,0.4);
}
.ex-emph {
  display: block; margin-top: 22px;
  color: var(--blood);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-shadow: 0 0 30px rgba(110,16,20,0.6);
}
.ex-attrib {
  font-family: var(--type); font-size: 12px; letter-spacing: 0.24em;
  color: var(--bone-dim); margin-top: 36px;
}
.ex-glyphs span {
  position: absolute; color: var(--blood); opacity: 0.7;
  animation: blink 5s infinite;
}
.g1 { top: 16px; left: 24px; }
.g2 { top: 16px; right: 24px; animation-delay: 1s; }
.g3 { bottom: 16px; left: 24px; animation-delay: 2s; }
.g4 { bottom: 16px; right: 24px; animation-delay: 3s; }

/* ===== STORIES grid ===== */
.stories {
  padding: 140px 24px;
  background: var(--ink);
  position: relative;
}
.stories-head {
  max-width: 900px; margin: 0 auto 60px;
}
.stories-head h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.05;
  color: var(--bone); margin-bottom: 18px;
  text-wrap: balance;
}
.stories-sub { color: var(--bone-soft); max-width: 600px; font-size: 18px; }

.grid {
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.card {
  position: relative; overflow: hidden;
  grid-column: span 2; grid-row: span 2;
  background: var(--ink-3);
  border: 1px solid var(--line);
  cursor: none;
}
.card-tall { grid-row: span 3; }
.card-wide { grid-column: span 4; grid-row: span 2; }
.card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.3) contrast(1.05) brightness(0.85);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s;
}
.card:hover img { transform: scale(1.06); filter: grayscale(0) contrast(1.1) brightness(1); }
@media (max-width: 880px) {
  .grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .card { grid-column: span 1; grid-row: span 1; }
  .card-tall, .card-wide { grid-column: span 2; grid-row: span 2; }
}

/* ===== THEMES ===== */
.themes {
  padding: 120px 24px;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  border-top: 1px solid var(--line);
  text-align: center;
}
.themes-h {
  font-family: var(--display); font-size: clamp(32px, 4.5vw, 56px);
  color: var(--bone); margin-bottom: 70px; font-weight: 600;
}
.themes-list {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
}
@media (max-width: 880px) { .themes-list { grid-template-columns: repeat(2, 1fr); } }
.theme {
  padding: 40px 24px;
  border-right: 1px solid var(--line);
  transition: background 0.3s;
}
.theme:last-child { border-right: none; }
.theme:hover { background: rgba(110,16,20,0.06); }
.theme-icon {
  display: flex; justify-content: center; margin-bottom: 18px;
  color: var(--bone-soft);
}
.theme-icon svg { width: 60px; height: 60px; transition: transform 0.4s; }
.theme:hover .theme-icon svg { transform: rotate(8deg) scale(1.08); color: var(--bone); }
.theme h3 {
  font-family: var(--display); font-style: italic;
  font-size: 22px; color: var(--bone); margin-bottom: 8px;
}
.theme p {
  font-family: var(--serif); font-style: italic;
  color: var(--bone-dim); font-size: 15px;
  text-wrap: pretty;
}

@media (max-width: 880px) {
  .theme { border-right: none; border-bottom: 1px solid var(--line); }
}

/* ===== AUTHOR ===== */
.author {
  padding: 140px 24px;
  background: var(--ink-2);
}
.author-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
  align-items: center;
}
@media (max-width: 880px) { .author-grid { grid-template-columns: 1fr; gap: 50px; } }
.portrait-frame {
  position: relative; border: 1px solid var(--line-strong);
  padding: 12px; background: var(--ink);
  max-width: 280px;
}
.portrait-frame::before, .portrait-frame::after {
  content: "✶"; position: absolute;
  color: var(--bone-soft); font-size: 12px;
}
.portrait-frame::before { top: -8px; left: -8px; }
.portrait-frame::after { bottom: -8px; right: -8px; }
.portrait-img {
  width: 100%;
  aspect-ratio: 5 / 6;
  display: block;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.06);
}
.portrait-cap {
  font-family: var(--type); font-size: 10px; letter-spacing: 0.28em;
  color: var(--bone-dim); text-align: center;
  margin-top: 14px;
}
.author-copy h2 {
  font-family: var(--display); font-size: clamp(36px, 5vw, 56px);
  color: var(--bone); margin-bottom: 24px;
}
.author-copy p { color: var(--bone-soft); margin-bottom: 18px; font-size: 18px; }
.author-quote {
  font-family: var(--display); font-style: italic;
  font-size: 24px; color: var(--bone); margin-top: 28px;
  padding-left: 24px; border-left: 2px solid var(--blood);
}

/* ===== PREORDER ===== */
.preorder {
  position: relative; padding: 160px 24px;
  background: var(--ink);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.pre-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(110,16,20,0.18), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(201,179,90,0.06), transparent 50%);
}
.preorder-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto; text-align: center;
}
.pre-eyebrow {
  display: inline-flex; gap: 14px; align-items: center;
  font-family: var(--type); font-size: 11px; letter-spacing: 0.32em;
  color: var(--blood); margin-bottom: 30px;
}
.pre-eyebrow .eyebrow-line { background: var(--blood); }

.pre-h {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(40px, 6vw, 84px); line-height: 1.02;
  color: var(--bone); margin-bottom: 60px;
  text-wrap: balance;
}
.pre-h em { color: var(--blood); font-style: italic; }

.pre-options {
  display: grid; grid-template-columns: minmax(0, 560px); gap: 20px;
  justify-content: center;
  margin-bottom: 0;
}
@media (max-width: 880px) { .pre-options { grid-template-columns: minmax(0, 1fr); } }
.pre-card {
  position: relative;
  padding: 36px 28px;
  border: 1px solid var(--line-strong);
  background: var(--ink-2);
  display: flex; flex-direction: column; gap: 8px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}
.pre-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--blood-2), var(--blood));
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}
.pre-card:hover::before { transform: translateY(0); }
.pre-card:hover { border-color: var(--blood); transform: translateY(-4px); }
.pre-card > * { position: relative; z-index: 1; }
.pre-kind {
  font-family: var(--type); font-size: 11px; letter-spacing: 0.28em;
  color: var(--bone-soft);
}
.pre-price {
  font-family: var(--display); font-size: 56px; font-weight: 600;
  color: var(--bone); line-height: 1;
}
.pre-note {
  font-family: var(--serif); font-style: italic;
  color: var(--bone-dim); font-size: 14px;
  margin-top: 8px;
}
.pre-arrow {
  font-family: var(--display); font-size: 28px;
  color: var(--bone); align-self: flex-end; margin-top: 12px;
  transform: translateX(0); transition: transform 0.3s;
}
.pre-card:hover .pre-arrow { transform: translateX(8px); color: var(--bone); }
.pre-card-single { min-height: 220px; }

/* ===== FOOTER ===== */
.foot {
  padding: 80px 24px 40px;
  background: var(--ink);
  border-top: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.foot-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  text-align: center; position: relative; z-index: 1;
}
.foot-mark {
  font-family: var(--type); font-size: 11px; letter-spacing: 0.4em;
  color: var(--bone-soft);
}
.foot-links {
  display: flex; gap: 22px; flex-wrap: wrap; justify-content: center;
  font-family: var(--type); font-size: 11px; letter-spacing: 0.24em;
}
.foot-links a { color: var(--bone-dim); transition: color 0.2s; }
.foot-links a:hover { color: var(--bone); }
.foot-fine {
  font-family: var(--serif); font-style: italic; font-size: 13px;
  color: var(--bone-dim);
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.dotsep { color: var(--blood); }
.foot-spider {
  position: absolute; left: 50%; top: 16px; transform: translateX(-50%);
  width: 200px; color: var(--bone-soft); opacity: 0.5;
  animation: walk 14s ease-in-out infinite;
}
@keyframes walk {
  0%, 100% { transform: translate(-50%, 0) rotate(0); }
  25% { transform: translate(-60%, -2px) rotate(-2deg); }
  50% { transform: translate(-50%, 0) rotate(0); }
  75% { transform: translate(-40%, -2px) rotate(2deg); }
}
