/* ==========================================================================
   BOOKS JK — dark mysterious redesign
   ========================================================================== */

:root {
  --bg: #0a0810;
  --bg-alt: #120e1a;
  --surface: #1a1423;
  --surface-2: #221a2c;
  --border: rgba(230, 215, 240, 0.1);
  --text: #f1ecf5;
  --text-dim: #ab9dbb;
  --text-faint: #766a86;
  --accent: #b32c42;
  --accent-bright: #d94a5f;
  --gold: #c9a24b;
  --gold-soft: rgba(201, 162, 75, 0.35);
  --shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.65);
  --radius: 14px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--text);
}

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.eyebrow {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* subtle film-grain / vignette texture used across dark sections */
.grain {
  position: relative;
}
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  opacity: 0.6;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #7d1f30 100%);
  color: #fff5f6;
  box-shadow: 0 12px 30px -10px rgba(179, 44, 66, 0.6);
}
.btn-primary:hover { box-shadow: 0 16px 34px -8px rgba(179, 44, 66, 0.75); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #8f7230 100%);
  color: #17110a;
  box-shadow: 0 12px 30px -10px rgba(201, 162, 75, 0.55);
}
.btn-gold:hover { box-shadow: 0 16px 34px -8px rgba(201, 162, 75, 0.7); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(241, 236, 245, 0.35);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-disabled {
  background: transparent;
  border-color: var(--border);
  color: var(--text-faint);
  cursor: not-allowed;
}
.btn-disabled:hover { transform: none; }

.btn-block { width: 100%; justify-content: center; }

/* ==========================================================================
   NAV
   ========================================================================== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 12px 0;
  transition: background 0.4s ease, padding 0.4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.topbar.solid {
  background: rgba(10, 8, 16, 0.88);
  backdrop-filter: blur(14px);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img.logo-img { height: 58px; width: auto; object-fit: contain; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--text);
}
.brand-name b { color: var(--gold); font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-dim);
  position: relative;
  padding-bottom: 4px;
  transition: color .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-social a {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-dim);
  font-size: 0.85rem;
  transition: all .25s ease;
}
.nav-social a:hover { color: var(--gold); border-color: var(--gold-soft); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); display: block; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: -12% -6%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,6,12,0.1) 0%, rgba(8,6,12,0.06) 55%, var(--bg) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-inner { max-width: 640px; }

.hero-glass {
  position: relative;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px) saturate(140%) brightness(0.72);
  -webkit-backdrop-filter: blur(10px) saturate(140%) brightness(0.72);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 28px;
  padding: clamp(30px, 5vw, 54px);
  overflow: hidden;
  box-shadow:
    0 25px 70px -25px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.45),
    inset 0 0 40px rgba(255,255,255,0.03);
}
.hero-glass::before {
  content: "";
  position: absolute;
  top: -60%; left: -30%;
  width: 70%; height: 220%;
  background: linear-gradient(115deg, rgba(255,255,255,0.4), rgba(255,255,255,0) 55%);
  transform: rotate(8deg);
  pointer-events: none;
}
.hero-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.08);
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 0.3em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero .lede {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 500px;
  margin-bottom: 2em;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) {
  .hero-bg { transform: none !important; }
}

.page-hero {
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,6,12,0.7) 0%, rgba(8,6,12,0.9) 100%);
  z-index: 1;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: var(--text-dim); max-width: 520px; margin: 10px auto 0; }

/* ==========================================================================
   SECTIONS / SPOTLIGHT
   ========================================================================== */
section { position: relative; }
.section-pad { padding: 110px 0; }
.section-pad-sm { padding: 70px 0; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-head p { color: var(--text-dim); }

.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.spotlight.reverse .spotlight-copy { order: 2; }
.spotlight.reverse .spotlight-figure { order: 1; }
.spotlight-figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.spotlight-figure::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.5);
  border-radius: var(--radius);
}
.spotlight-figure img {
  width: 100%;
  transition: transform 1.2s ease;
}
.spotlight-figure:hover img { transform: scale(1.04); }
.spotlight-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.spotlight-copy .genre {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.spotlight-copy blockquote {
  margin: 20px 0 26px;
  padding-left: 20px;
  border-left: 2px solid var(--gold-soft);
  color: var(--text-dim);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.6;
}
.spotlight-copy p.body-text { color: var(--text-dim); margin-bottom: 26px; }
.spotlight-copy .side-rule {
  margin: 20px 0 26px;
  padding-left: 20px;
  border-left: 2px solid var(--gold-soft);
}
.spotlight-copy .side-rule p.body-text:last-child { margin-bottom: 0; }
.status-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #7fd99a;
  margin-left: 12px;
}
.status-coming {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-left: 12px;
}
.status-coming::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px 1px rgba(201,162,75,0.6);
  display: inline-block;
}
.status-live::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4fd678;
  box-shadow: 0 0 8px 1px rgba(79, 214, 120, 0.6);
  display: inline-block;
}

.format-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 6px;
}
.format-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text-dim);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all .22s ease;
}
.format-links a:hover {
  border-color: var(--gold-soft);
  color: var(--gold);
  background: rgba(201,162,75,0.08);
  transform: translateY(-2px);
}
.format-links a.primary {
  background: linear-gradient(135deg, var(--accent) 0%, #7d1f30 100%);
  border-color: transparent;
  color: #fff5f6;
}
.format-links a.primary:hover { color: #fff; transform: translateY(-2px); }
.format-links.center { justify-content: center; }
.format-links.small a { padding: 6px 12px; font-size: 0.66rem; }

.tag-pill {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  margin-bottom: 18px;
}

hr.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ==========================================================================
   BOOK TRAILER
   ========================================================================== */
.trailer-section {
  padding: 60px 0;
  text-align: center;
  background: var(--bg-alt);
}
.trailer-prompt {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.play-btn {
  position: relative;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  background: radial-gradient(circle at 35% 30%, rgba(201,162,75,0.18), rgba(255,255,255,0.03));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.play-btn::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,75,0.25);
  animation: pulse-ring 2.6s ease-out infinite;
}
.play-btn:hover {
  transform: scale(1.06);
  border-color: var(--gold);
  box-shadow: 0 0 30px -4px rgba(201,162,75,0.5);
}
.play-btn .play-icon {
  width: 0; height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid var(--gold);
  margin-left: 5px;
}
.trailer-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--text-dim);
  font-size: 1.05rem;
  margin: 0;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: .6; }
  80% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility 0s linear .3s;
}
.video-modal.open {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease, visibility 0s linear 0s;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 4, 10, 0.9);
  backdrop-filter: blur(6px);
}
.video-modal-box {
  position: relative;
  width: min(920px, 90vw);
  z-index: 1;
  transform: scale(0.94);
  transition: transform .3s ease;
}
.video-modal.open .video-modal-box { transform: scale(1); }
.video-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 90px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,162,75,0.2);
}
.video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
.video-modal-close:hover { border-color: var(--gold); color: var(--gold); }

/* ==========================================================================
   PREORDER
   ========================================================================== */
.preorder {
  background: radial-gradient(ellipse at 50% 0%, rgba(179,44,66,0.14), transparent 60%), var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.preorder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.preorder-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--gold);
  color: #17110a;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 20px -6px rgba(0,0,0,0.6);
  z-index: 3;
  white-space: nowrap;
}

/* 3D book mockup for "After Hours" — real cover image on a tilting spine+pages rig */
.mock-book-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 30px 0;
}
.mock-book {
  position: relative;
  width: 260px;
  aspect-ratio: 2 / 3;
  transform: perspective(1200px) rotateY(-26deg) rotateX(5deg);
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(.22,1,.36,1);
}
.mock-book-wrap:hover .mock-book { transform: perspective(1200px) rotateY(-6deg) rotateX(0deg); }
.mock-cover {
  position: absolute; inset: 0;
  border-radius: 3px 8px 8px 3px;
  background-image: url('assets/images/after-hours-cover.png');
  background-size: cover;
  background-position: center;
  box-shadow: 18px 26px 50px -14px rgba(0,0,0,0.75), inset -6px 0 14px rgba(0,0,0,0.5);
  border: 1px solid rgba(201,162,75,0.28);
}
.mock-spine {
  position: absolute;
  left: -22px; top: 3px; bottom: 3px;
  width: 22px;
  background: linear-gradient(90deg, #0b0810, #1c1424);
  transform: rotateY(-90deg);
  transform-origin: right;
  border-radius: 3px 0 0 3px;
}
.mock-pages {
  position: absolute;
  right: -30px; top: 5px; bottom: 5px;
  width: 30px;
  background: repeating-linear-gradient(180deg, #f6f3ea, #f6f3ea 2px, #ddd6c4 2px, #ddd6c4 4px);
  box-shadow: inset -3px 0 6px rgba(0,0,0,0.25);
  transform: rotateY(90deg);
  transform-origin: left;
  border-radius: 0 2px 2px 0;
}
.mock-pages-bottom {
  position: absolute;
  left: 3px; right: 3px; bottom: -12px;
  height: 12px;
  background: repeating-linear-gradient(90deg, #f6f3ea, #f6f3ea 2px, #ddd6c4 2px, #ddd6c4 4px);
  box-shadow: inset 0 -3px 6px rgba(0,0,0,0.25);
  transform: rotateX(-90deg);
  transform-origin: top;
  border-radius: 0 0 3px 3px;
}

.preorder-copy .tag-pill { border-color: var(--accent); color: var(--accent-bright); }
.preorder-note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 8px;
}
.preorder-note::before { content: "◆"; color: var(--gold); font-size: 0.6rem; }

/* ==========================================================================
   SHOP GRID
   ========================================================================== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.book-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color .4s ease;
}
.book-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--gold-soft);
}
.book-card .card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0d0a13;
}
.book-card .card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.book-card:hover .card-media img { transform: scale(1.08); }
.card-flag {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 2;
}
.card-flag.gold { background: var(--gold); color: #17110a; }
.card-flag.red { background: var(--accent); color: #fff; }
.card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.card-cat {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.card-body h3 { font-size: 1.35rem; margin-bottom: 2px; }
.card-desc {
  color: var(--text-dim);
  font-size: 0.88rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  gap: 12px;
}
.card-price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--text); }
.card-price .old { text-decoration: line-through; color: var(--text-faint); font-size: 1rem; margin-left: 8px; }
.card-foot .btn { padding: 10px 20px; font-size: 0.72rem; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-photo img { aspect-ratio: 4/5; object-fit: cover; }
.about-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.55));
  border-radius: var(--radius);
}
.about-meta {
  display: flex;
  gap: 26px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.about-meta .item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 0.85rem;
}
.about-meta .item span.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.contact-side { text-align: left; }
.contact-side img { width: 220px; margin-bottom: 26px; opacity: 0.9; }
.contact-info { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.contact-info a { color: var(--text-dim); font-size: 0.9rem; transition: color .2s ease; }
.contact-info a:hover { color: var(--gold); }

.contact-form {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row { display: flex; gap: 16px; margin-bottom: 16px; }
.form-row .field { flex: 1; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-soft);
  background: rgba(255,255,255,0.05);
}
.field textarea { resize: vertical; min-height: 120px; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-bottom: 22px;
}
.consent input { margin-top: 3px; }
.consent a { color: var(--gold); text-decoration: underline; }
.form-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-faint);
}
#formStatus {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--gold);
  display: none;
}
#formStatus.show { display: block; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}
.footer-brand .brand-name { font-size: 1.5rem; }
.footer-brand p { color: var(--text-faint); font-size: 0.85rem; max-width: 320px; margin-top: 10px; }
.footer-nav { display: flex; gap: 30px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.footer-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
}
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: var(--text-faint); font-size: 0.78rem; margin: 0; }

.footer-legal {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0 0 26px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  margin-bottom: 26px;
}
.footer-legal a {
  font-size: 0.76rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}
.footer-legal a:hover { color: var(--gold); }

/* ==========================================================================
   LEGAL PAGES (Terms / Privacy / Returns)
   ========================================================================== */
.legal-doc {
  max-width: 780px;
  margin: 0 auto;
}
.legal-doc .updated {
  color: var(--text-faint);
  font-size: 0.85rem;
  margin-bottom: 40px;
  display: block;
}
.legal-doc h2 {
  font-size: 1.5rem;
  margin-top: 2.2em;
  color: var(--gold);
}
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc p, .legal-doc li {
  color: var(--text-dim);
  font-size: 0.96rem;
  margin-bottom: 1em;
}
.legal-doc ul { padding-left: 1.2em; }
.legal-doc a { color: var(--gold); text-decoration: underline; }
.legal-doc strong { color: var(--text); }

/* ==========================================================================
   SCROLL REVEAL ANIMATION
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(.16,.8,.24,1), transform 0.9s cubic-bezier(.16,.8,.24,1);
  transition-delay: var(--delay, 0s);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-scale { transform: translateY(20px) scale(0.96); }
.reveal-scale.in-view { transform: translateY(0) scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  .spotlight, .preorder-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .spotlight.reverse .spotlight-copy, .spotlight.reverse .spotlight-figure { order: 0; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { position: fixed; top: 68px; left: 0; right: 0; background: rgba(10,8,16,0.98); flex-direction: column; padding: 24px; gap: 20px; border-bottom: 1px solid var(--border); transform: translateY(-130%); transition: transform .35s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .nav-social { display: none; }
}
@media (max-width: 640px) {
  .shop-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; gap: 0; }
  .section-pad { padding: 70px 0; }
  .contact-form { padding: 26px; }
  .mock-book { width: 200px; }
}
