/* =====================================================
   Miller Media — Shared CSS
   Design system extracted from jackmiller-homepage.html
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Anybody:wght@300;400;500&family=DM+Mono:wght@300;400&display=swap');

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

:root {
  --ink: #0e0b0f;
  --paper: #f5f0e8;
  --cream: #ede7d7;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --crimson: #8b1a1a;
  --ghost: rgba(245,240,232,0.06);
  --ghost-strong: rgba(245,240,232,0.12);
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'Anybody', sans-serif;
  --ff-mono: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--ff-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: default;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.35;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  border-bottom: 1px solid var(--ghost);
  backdrop-filter: blur(12px);
  background: rgba(14,11,15,0.7);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  border: none;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Mobile nav hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 300;
  position: relative;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  border: none;
  padding: 0.9rem 2rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  font-weight: 400;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  background: transparent;
  border: 1px solid rgba(245,240,232,0.2);
  padding: 0.9rem 2rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  font-weight: 300;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── SECTION LABEL ── */
.section-label {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
}

/* ── HERO (Homepage) ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(139,26,26,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,0.07) 0%, transparent 60%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(245,240,232,0.025) 79px,
      rgba(245,240,232,0.025) 80px
    );
}

.hero-left {
  position: relative;
  z-index: 2;
  padding: 4rem 3rem 4rem 4rem;
}

.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(245,240,232,0.65);
  max-width: 38ch;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 4rem;
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.25);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.hero-scroll-hint::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(245,240,232,0.25), transparent);
}

/* ── HERO BOOK STACK ── */
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
  height: 100%;
}

.book-stack {
  position: relative;
  width: 530px;
  height: 670px;
}

.book-card {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,240,232,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.book-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 35px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.2) !important;
  z-index: 10;
}

.book-1 {
  width: 345px; height: 530px;
  top: 90px; left: 0;
  transform: rotate(-6deg);
  z-index: 3;
  background: linear-gradient(135deg, #1a0a0a 0%, #2d1010 40%, #1a0a0a 100%);
}

.book-2 {
  width: 328px; height: 510px;
  top: 128px; left: 110px;
  transform: rotate(2deg);
  z-index: 2;
  background: linear-gradient(135deg, #0a0a1a 0%, #101028 40%, #0a0a1a 100%);
}

.book-3 {
  width: 316px; height: 494px;
  top: 165px; left: 212px;
  transform: rotate(8deg);
  z-index: 1;
  background: linear-gradient(135deg, #0f1a0f 0%, #1a2e1a 40%, #0f1a0f 100%);
}

.book-spine {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 18px;
  background: rgba(0,0,0,0.4);
  border-right: 1px solid rgba(255,255,255,0.05);
}

.book-content {
  position: absolute;
  inset: 0; left: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 0.75rem;
}

.book-tag {
  font-family: var(--ff-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  display: inline-block;
  align-self: flex-start;
}

.book-1 .book-tag { background: rgba(139,26,26,0.6); color: #ffaaaa; }
.book-2 .book-tag { background: rgba(30,60,120,0.6); color: #aaccff; }
.book-3 .book-tag { background: rgba(30,80,50,0.6); color: #aaffcc; }

.book-title-text {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.book-1 .book-title-text { font-size: 0.9rem; color: #f5d0d0; }
.book-2 .book-title-text { font-size: 0.85rem; color: #c8d8ff; }
.book-3 .book-title-text { font-size: 0.85rem; color: #c0f0d8; }

.book-author-text {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.4);
  margin-top: 0.25rem;
}

.book-deco {
  position: absolute;
  bottom: 0.75rem; right: 0.75rem;
  width: 40px; height: 40px;
  opacity: 0.12;
  border: 1px solid currentColor;
  border-radius: 50%;
}

/* ── TICKER ── */
.ticker-wrap {
  border-top: 1px solid var(--ghost);
  border-bottom: 1px solid var(--ghost);
  overflow: hidden;
  padding: 0.75rem 0;
  background: rgba(201,168,76,0.04);
}

.ticker {
  display: flex;
  gap: 4rem;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-item {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.ticker-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── FEATURED BOOK ── */
.featured {
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}

.featured-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(139,26,26,0.12) 0%, transparent 60%);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── BIG BOOK DISPLAY ── */
.big-book {
  position: relative;
  max-width: 300px;
}

.big-book-body {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: 4px;
  background: linear-gradient(145deg, #1a0808 0%, #330f0f 35%, #1a0808 70%, #0d0404 100%);
  box-shadow:
    8px 8px 0 rgba(0,0,0,0.4),
    20px 20px 0 rgba(0,0,0,0.2),
    0 40px 80px rgba(0,0,0,0.6),
    inset -4px 0 12px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.big-book-body:hover { transform: perspective(800px) rotateY(-5deg) translateY(-4px); }

.big-book-spine {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 24px;
  background: linear-gradient(to right, #0d0404, #1a0808);
  border-right: 1px solid rgba(255,255,255,0.04);
}

.big-book-inner {
  position: absolute;
  inset: 0; left: 24px;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.big-book-genre {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,160,160,0.7);
  background: rgba(139,26,26,0.3);
  padding: 0.25rem 0.6rem;
  display: inline-block;
  align-self: flex-start;
  border: 1px solid rgba(139,26,26,0.4);
}

.big-book-name {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.1;
  color: #ffe0e0;
  letter-spacing: -0.01em;
}

.big-book-sub {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(245,240,232,0.3);
  margin-top: 0.4rem;
}

.big-book-deco {
  position: absolute;
  bottom: 1.5rem; right: 1rem;
  font-size: 3rem;
  opacity: 0.06;
  font-family: var(--ff-display);
  font-weight: 900;
  color: var(--paper);
  line-height: 1;
  user-select: none;
}

.big-book-badge {
  position: absolute;
  top: -12px; right: -12px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}

.big-book-badge span {
  font-family: var(--ff-mono);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.3;
  text-align: center;
}

/* ── FEATURED TEXT SIDE ── */
.featured-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.featured-subtitle {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(245,240,232,0.4);
  margin-bottom: 1.75rem;
}

.featured-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.6);
  font-weight: 300;
  margin-bottom: 2rem;
}

.buy-options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.buy-btn {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.2s;
  font-weight: 400;
}

.buy-amazon { background: var(--gold); color: var(--ink); }
.buy-amazon:hover { background: var(--gold-light); transform: translateY(-2px); }

.buy-signed {
  background: transparent;
  color: rgba(245,240,232,0.6);
  border: 1px solid rgba(245,240,232,0.2);
}
.buy-signed:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.buy-free {
  background: transparent;
  color: rgba(245,240,232,0.45);
  border: 1px solid rgba(245,240,232,0.1);
}
.buy-free:hover { border-color: rgba(245,240,232,0.3); color: rgba(245,240,232,0.7); transform: translateY(-2px); }

.featured-quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.6;
}

/* ── ALL BOOKS ── */
.all-books {
  padding: 5rem 4rem 7rem;
  background: rgba(245,240,232,0.015);
  border-top: 1px solid var(--ghost);
}

.books-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.books-header-left .section-label { margin-bottom: 0.5rem; }

.books-heading {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.book-item {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.book-item:hover { transform: translateY(-6px); }

.book-cover {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: 3px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.3);
  transition: box-shadow 0.3s ease;
}

.book-item:hover .book-cover {
  box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.15);
}

.cover-1 { background: linear-gradient(145deg, #1a0808 0%, #330f0f 40%, #1a0808 100%); }
.cover-2 { background: linear-gradient(145deg, #080818 0%, #101030 40%, #080818 100%); }
.cover-3 { background: linear-gradient(145deg, #0e0e18 0%, #1a1a30 40%, #0e0e18 100%); }

.cover-spine {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 16px;
  background: rgba(0,0,0,0.5);
  border-right: 1px solid rgba(255,255,255,0.04);
}

.cover-inner {
  position: absolute;
  inset: 0; left: 16px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cover-genre {
  font-family: var(--ff-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  display: inline-block;
  align-self: flex-start;
}

.cover-1 .cover-genre { color: rgba(255,160,160,0.8); background: rgba(139,26,26,0.35); }
.cover-2 .cover-genre { color: rgba(160,190,255,0.8); background: rgba(26,50,139,0.35); }
.cover-3 .cover-genre { color: rgba(160,220,190,0.8); background: rgba(26,100,60,0.35); }

.cover-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.cover-1 .cover-title { color: #ffe0e0; }
.cover-2 .cover-title { color: #d0e4ff; }
.cover-3 .cover-title { color: #c8f0e0; }

.cover-author {
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: rgba(245,240,232,0.35);
  margin-top: 0.25rem;
}

.cover-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.cover-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%);
  pointer-events: none;
}

.big-book-photo {
  position: absolute;
  inset: 0; left: 24px;
  width: calc(100% - 24px); height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.big-book-photo-overlay {
  position: absolute;
  inset: 0; left: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.05) 60%, transparent 100%);
  pointer-events: none;
}

.stack-photo {
  position: absolute;
  inset: 0; left: 18px;
  width: calc(100% - 18px); height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.stack-photo-overlay {
  position: absolute;
  inset: 0; left: 18px;
  background: rgba(0,0,0,0.1);
  pointer-events: none;
}

.book-item-title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.book-item-genre {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  margin-bottom: 0.75rem;
}

.book-item-actions {
  display: flex;
  gap: 0.5rem;
}

.mini-btn {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(245,240,232,0.15);
  color: rgba(245,240,232,0.5);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 400;
}

.mini-btn:hover { border-color: var(--gold); color: var(--gold); }

.mini-btn.primary {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
  color: var(--gold);
}
.mini-btn.primary:hover { background: var(--gold); color: var(--ink); }

/* ── MUSIC TEASER ── */
.music-teaser {
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--ghost);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.music-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 60%, rgba(80,30,120,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 30%, rgba(201,168,76,0.06) 0%, transparent 50%);
}

.music-left { position: relative; z-index: 1; }

.music-heading {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.music-heading em {
  font-style: italic;
  color: rgba(180,130,255,0.8);
}

.music-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.55);
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 42ch;
}

.notify-form {
  display: flex;
  gap: 0;
  max-width: 380px;
}

.notify-input {
  flex: 1;
  background: rgba(245,240,232,0.05);
  border: 1px solid rgba(245,240,232,0.12);
  border-right: none;
  padding: 0.8rem 1rem;
  color: var(--paper);
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color 0.2s;
}

.notify-input::placeholder { color: rgba(245,240,232,0.25); }
.notify-input:focus { border-color: rgba(180,130,255,0.4); }

.notify-btn {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(180,130,255,0.8);
  color: var(--ink);
  border: none;
  padding: 0.8rem 1.25rem;
  cursor: pointer;
  font-weight: 400;
  transition: background 0.2s;
  white-space: nowrap;
}

.notify-btn:hover { background: rgba(200,160,255,0.9); }

.music-right {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

/* ── VINYL ── */
.vinyl {
  width: 240px; height: 240px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #1a1a2e 0%, #16213e 30%, #0f3460 50%, #1a1a2e 70%, #16213e 100%);
  box-shadow:
    0 0 0 3px rgba(180,130,255,0.1),
    0 0 0 40px rgba(0,0,0,0.3),
    0 20px 60px rgba(0,0,0,0.6);
  position: relative;
  animation: spin 20s linear infinite;
  animation-play-state: paused;
}

.vinyl:hover { animation-play-state: running; }

@keyframes spin { to { transform: rotate(360deg); } }

.vinyl::before {
  content: '';
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background: repeating-conic-gradient(
    rgba(180,130,255,0.03) 0deg,
    rgba(0,0,0,0) 1deg,
    rgba(0,0,0,0) 3deg,
    rgba(180,130,255,0.03) 4deg
  );
}

.vinyl::after {
  content: '';
  position: absolute;
  inset: 42%;
  border-radius: 50%;
  background: #1a0a30;
  box-shadow: 0 0 0 1px rgba(180,130,255,0.2);
}

.vinyl-label {
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a1a4e, #1a0a30);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.vinyl-label-text {
  font-family: var(--ff-display);
  font-size: 0.5rem;
  font-weight: 700;
  color: rgba(180,130,255,0.6);
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.4;
}

.vinyl-coming {
  position: absolute;
  top: -1rem; right: -1rem;
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(180,130,255,0.85);
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
  font-weight: 400;
}

/* ── QUOTE BAND ── */
.quote-band {
  padding: 5rem 4rem;
  border-top: 1px solid var(--ghost);
  border-bottom: 1px solid var(--ghost);
  background: rgba(201,168,76,0.025);
  text-align: center;
}

.quote-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.4;
  color: rgba(245,240,232,0.75);
  max-width: 28ch;
  margin: 0 auto 1rem;
  letter-spacing: -0.01em;
}

.quote-attribution {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── NEWSLETTER ── */
.newsletter {
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  border-top: 1px solid var(--ghost);
}

.newsletter-left h2 {
  font-family: var(--ff-display);
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.newsletter-left p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(245,240,232,0.55);
  font-weight: 300;
}

.perks-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.perks-list li {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: rgba(245,240,232,0.5);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.perk-check {
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.perk-check::after {
  content: '';
  width: 6px; height: 4px;
  border-left: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(-45deg) translateY(-1px);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input {
  background: rgba(245,240,232,0.04);
  border: 1px solid rgba(245,240,232,0.1);
  padding: 0.9rem 1.25rem;
  color: var(--paper);
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}

.newsletter-input::placeholder { color: rgba(245,240,232,0.2); }
.newsletter-input:focus { border-color: rgba(201,168,76,0.4); }

.newsletter-submit {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 0.9rem;
  cursor: pointer;
  font-weight: 400;
  transition: background 0.2s, transform 0.15s;
}

.newsletter-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

.newsletter-fine {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  color: rgba(245,240,232,0.2);
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--ghost);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(245,240,232,0.4);
  text-decoration: none;
}

.footer-logo span { color: var(--gold); opacity: 0.7; }

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.25);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.2);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 10rem 4rem 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--ghost);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 79px,
    rgba(245,240,232,0.025) 79px, rgba(245,240,232,0.025) 80px
  );
}

.page-hero-label {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.page-hero-label::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
}

.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.page-hero-sub {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(245,240,232,0.45);
  position: relative;
  z-index: 1;
  max-width: 50ch;
}

/* ── FILTER TABS ── */
.filter-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--ghost);
}

.filter-tab {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.filter-tab:hover { color: rgba(245,240,232,0.7); }
.filter-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ── STAR RATING ── */
.star-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 0.5rem;
}

.star {
  color: var(--gold);
  font-size: 0.75rem;
}

.star.empty { color: rgba(245,240,232,0.15); }

/* ── BOOKS PAGE CARDS ── */
.books-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
}

.book-page-card {
  position: relative;
  transition: transform 0.3s ease;
}

.book-page-card:hover { transform: translateY(-4px); }

.book-page-blurb {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.5);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.book-page-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.book-page-actions .buy-btn {
  display: block;
  text-align: center;
  width: 100%;
}

/* ── MUSIC PAGE ── */
.music-page-hero-bg {
  background:
    radial-gradient(ellipse 60% 80% at 30% 60%, rgba(80,30,120,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(201,168,76,0.06) 0%, transparent 50%);
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.album-card {
  position: relative;
  background: rgba(245,240,232,0.03);
  border: 1px solid var(--ghost);
  overflow: hidden;
  transition: border-color 0.3s;
}

.album-card:hover { border-color: rgba(180,130,255,0.3); }

.album-art {
  width: 100%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse at center, rgba(80,30,120,0.3) 0%, rgba(14,11,15,0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.album-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.album-coming-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-family: var(--ff-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(180,130,255,0.85);
  color: var(--ink);
  padding: 0.25rem 0.6rem;
}

.album-info {
  padding: 1.25rem;
}

.album-title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.album-meta {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
}

.streaming-section {
  padding: 5rem 4rem;
  border-top: 1px solid var(--ghost);
}

.streaming-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.streaming-placeholder {
  background: rgba(245,240,232,0.03);
  border: 1px solid var(--ghost);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}

.streaming-placeholder span {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.2);
}

.music-links-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.music-link-btn {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  border: 1px solid rgba(180,130,255,0.25);
  color: rgba(180,130,255,0.65);
  text-decoration: none;
  transition: all 0.2s;
  background: transparent;
}

.music-link-btn:hover {
  border-color: rgba(180,130,255,0.6);
  color: rgba(200,160,255,0.9);
  background: rgba(180,130,255,0.06);
}

/* ── BLOG PAGE ── */
.blog-hero-bg {
  background:
    radial-gradient(ellipse 50% 80% at 20% 40%, rgba(139,26,26,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 70%, rgba(201,168,76,0.07) 0%, transparent 55%);
}

.featured-post-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: rgba(245,240,232,0.025);
  border: 1px solid var(--ghost);
  margin-bottom: 4rem;
  overflow: hidden;
  transition: border-color 0.3s;
}

.featured-post-card:hover { border-color: rgba(201,168,76,0.2); }

.featured-post-image {
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, #1a0808 0%, #330f0f 40%, #1a0808 100%);
  position: relative;
  overflow: hidden;
}

.featured-post-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.featured-post-body {
  padding: 2.5rem 2.5rem 2.5rem 0;
}

.post-category-tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  margin-bottom: 1rem;
}

.post-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.post-date {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.3);
  margin-bottom: 1rem;
}

.post-excerpt {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(245,240,232,0.55);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.post-read-more {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}

.post-read-more:hover { gap: 0.85rem; }
.post-read-more::after { content: '→'; }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.blog-card {
  background: rgba(245,240,232,0.02);
  border: 1px solid var(--ghost);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}

.blog-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-3px);
}

.blog-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(145deg, #0e0e1a 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img { transform: scale(1.04); }

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

/* ── ABOUT PAGE ── */
.about-hero-bg {
  background:
    radial-gradient(ellipse 50% 70% at 70% 40%, rgba(201,168,76,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(139,26,26,0.1) 0%, transparent 55%);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
  padding: 7rem 4rem;
}

.about-photo {
  position: sticky;
  top: 7rem;
}

.about-photo-frame {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #1a1208 0%, #2e2010 40%, #1a1208 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.3), 0 30px 60px rgba(0,0,0,0.5);
}

.about-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.about-photo-placeholder span {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.15);
}

/* Logo showcase replacing author photo */
.about-logo-showcase {
  aspect-ratio: 4/3 !important;
  background: linear-gradient(160deg, #080604 0%, #12100a 45%, #0a0806 100%) !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem;
  overflow: hidden;
}

.about-logo-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 50% 50%, rgba(232,201,122,0.09) 0%, transparent 50%),
    radial-gradient(ellipse 120% 30% at 50% 100%, rgba(139,26,26,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.about-logo-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.about-logo-svg {
  position: relative;
  z-index: 1;
  width: 72% !important;
  height: auto !important;
  object-fit: contain !important;
  filter:
    drop-shadow(0 0 16px rgba(201,168,76,0.6))
    drop-shadow(0 0 48px rgba(201,168,76,0.22))
    drop-shadow(0 2px 6px rgba(0,0,0,0.9));
}

.about-logo-caption {
  position: relative;
  z-index: 1;
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.4);
  margin: 0;
}

.about-content h2 {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  margin-top: 3rem;
}

.about-content h2:first-child { margin-top: 0; }

.about-content p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(245,240,232,0.62);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.about-pull-quote {
  border-left: 2px solid var(--gold);
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  margin: 2rem 0;
  background: rgba(201,168,76,0.04);
}

.about-pull-quote p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.55;
  margin: 0;
}

.timeline {
  padding: 5rem 4rem;
  border-top: 1px solid var(--ghost);
}

.timeline-heading {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.timeline-items {
  position: relative;
  padding-left: 2rem;
}

.timeline-items::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: var(--ghost-strong);
}

.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  margin-left: 1px;
}

.timeline-year {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.timeline-event {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.timeline-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(245,240,232,0.45);
  font-weight: 300;
}

.press-kit-section {
  padding: 4rem;
  border-top: 1px solid var(--ghost);
  background: rgba(245,240,232,0.015);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.press-kit-text h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.press-kit-text p {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.45);
  font-weight: 300;
}

.social-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--ghost-strong);
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── CONTACT PAGE ── */
.contact-hero-bg {
  background:
    radial-gradient(ellipse 50% 70% at 60% 40%, rgba(139,26,26,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 30% 50% at 20% 70%, rgba(201,168,76,0.06) 0%, transparent 50%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  padding: 6rem 4rem;
  align-items: start;
}

.contact-form-wrap { }

.contact-form-heading {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(245,240,232,0.04);
  border: 1px solid rgba(245,240,232,0.1);
  padding: 0.9rem 1.1rem;
  color: var(--paper);
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(245,240,232,0.2); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: rgba(201,168,76,0.4); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23c9a84c' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option { background: #1a1520; }

.form-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  letter-spacing: normal;
}

.form-submit {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 1rem 2.5rem;
  cursor: pointer;
  font-weight: 400;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
  margin-top: 0.5rem;
}

.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

.contact-info {
  padding-top: 1rem;
}

.contact-info-heading {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

.contact-info-item {
  margin-bottom: 2rem;
}

.contact-info-label {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact-info-value {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.6);
}

.contact-info-value a {
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-value a:hover { color: var(--gold); }

.contact-divider {
  width: 100%;
  height: 1px;
  background: var(--ghost);
  margin: 2rem 0;
}

/* ── BLOG MODAL / POST VIEW ── */
.blog-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14,11,15,0.92);
  z-index: 500;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 4rem 1rem;
}

.blog-modal-overlay.open { display: flex; }

.blog-modal {
  background: #14101a;
  border: 1px solid var(--ghost-strong);
  max-width: 720px;
  width: 100%;
  position: relative;
}

.blog-modal-header {
  padding: 3rem 3rem 2rem;
  border-bottom: 1px solid var(--ghost);
}

.blog-modal-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: 1px solid var(--ghost-strong);
  color: rgba(245,240,232,0.4);
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.blog-modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.blog-modal-content {
  padding: 2.5rem 3rem;
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(245,240,232,0.65);
  font-weight: 300;
}

.blog-modal-content h2, .blog-modal-content h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--paper);
  margin: 2rem 0 0.75rem;
  line-height: 1.2;
}

.blog-modal-content h2 { font-size: 1.5rem; }
.blog-modal-content h3 { font-size: 1.15rem; }

.blog-modal-content p { margin-bottom: 1.25rem; }

.blog-modal-content em { color: var(--paper); font-style: italic; }
.blog-modal-content strong { color: var(--paper); font-weight: 500; }

/* ── ADMIN ── */
.admin-body {
  background: #0a0810;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-login-card {
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--ghost-strong);
  padding: 3rem;
}

.admin-login-logo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 0.4rem;
}

.admin-login-logo span { color: var(--gold); }

.admin-login-sub {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.25);
  margin-bottom: 2.5rem;
}

.admin-field {
  margin-bottom: 1rem;
}

.admin-field label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  margin-bottom: 0.4rem;
}

.admin-field input {
  width: 100%;
  background: rgba(245,240,232,0.04);
  border: 1px solid rgba(245,240,232,0.1);
  padding: 0.75rem 1rem;
  color: var(--paper);
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s;
}

.admin-field input:focus { border-color: rgba(201,168,76,0.4); }

.admin-login-btn {
  width: 100%;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 0.85rem;
  cursor: pointer;
  font-weight: 400;
  margin-top: 0.5rem;
  transition: background 0.2s;
}

.admin-login-btn:hover { background: var(--gold-light); }

.admin-error {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  color: #ff8888;
  margin-top: 0.75rem;
  display: none;
}

/* Dashboard layout */
.admin-dashboard {
  min-height: 100vh;
  background: #0a0810;
  display: flex;
  flex-direction: column;
}

.admin-topbar {
  background: rgba(14,11,15,0.95);
  border-bottom: 1px solid var(--ghost-strong);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-topbar-logo {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--paper);
  text-decoration: none;
}

.admin-topbar-logo span { color: var(--gold); }

.admin-topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.admin-user {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.35);
}

.admin-logout {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  text-decoration: none;
  border: 1px solid var(--ghost-strong);
  padding: 0.3rem 0.75rem;
  cursor: pointer;
  background: none;
  transition: all 0.2s;
}

.admin-logout:hover { border-color: var(--gold); color: var(--gold); }

.admin-main {
  display: flex;
  flex: 1;
}

.admin-sidebar {
  width: 200px;
  background: rgba(14,11,15,0.6);
  border-right: 1px solid var(--ghost);
  padding: 2rem 0;
  flex-shrink: 0;
}

.admin-nav-item {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  transition: all 0.2s;
  border-left: 2px solid transparent;
}

.admin-nav-item:hover { color: rgba(245,240,232,0.7); background: rgba(245,240,232,0.03); }
.admin-nav-item.active { color: var(--gold); border-left-color: var(--gold); background: rgba(201,168,76,0.05); }

.admin-content {
  flex: 1;
  padding: 2.5rem;
  overflow-y: auto;
}

.admin-tab-panel {
  display: none;
}

.admin-tab-panel.active { display: block; }

.admin-section-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.admin-section-sub {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.3);
  margin-bottom: 2rem;
}

.admin-btn {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  border: none;
  font-weight: 400;
  transition: all 0.2s;
}

.admin-btn-primary { background: var(--gold); color: var(--ink); }
.admin-btn-primary:hover { background: var(--gold-light); }
.admin-btn-ghost {
  background: transparent;
  color: rgba(245,240,232,0.5);
  border: 1px solid var(--ghost-strong);
}
.admin-btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.admin-btn-danger {
  background: transparent;
  color: rgba(255,120,120,0.6);
  border: 1px solid rgba(255,120,120,0.2);
}
.admin-btn-danger:hover { background: rgba(255,120,120,0.1); border-color: rgba(255,120,120,0.5); color: rgba(255,150,150,0.9); }

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.admin-table th {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--ghost);
}

.admin-table td {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  color: rgba(245,240,232,0.55);
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--ghost);
  vertical-align: middle;
}

.admin-table tr:hover td { background: rgba(245,240,232,0.02); }

.admin-table td .admin-btn { padding: 0.35rem 0.7rem; font-size: 0.6rem; }

.admin-form {
  background: rgba(245,240,232,0.02);
  border: 1px solid var(--ghost-strong);
  padding: 2rem;
  margin-top: 2rem;
}

.admin-form-title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-form-group {
  margin-bottom: 1rem;
}

.admin-form-group.full { grid-column: 1 / -1; }

.admin-form-group label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  margin-bottom: 0.4rem;
}

.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
  width: 100%;
  background: rgba(245,240,232,0.04);
  border: 1px solid rgba(245,240,232,0.1);
  padding: 0.7rem 0.9rem;
  color: var(--paper);
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s;
}

.admin-form-group input:focus,
.admin-form-group select:focus,
.admin-form-group textarea:focus { border-color: rgba(201,168,76,0.4); }

.admin-form-group textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--ff-body);
  font-size: 0.82rem;
}

.admin-form-group select option { background: #14101a; }

.admin-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.admin-toggle input { display: none; }

.admin-toggle-track {
  width: 36px; height: 20px;
  background: rgba(245,240,232,0.1);
  border-radius: 10px;
  position: relative;
  transition: background 0.2s;
}

.admin-toggle input:checked + .admin-toggle-track { background: var(--gold); }

.admin-toggle-track::after {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: white;
  transition: transform 0.2s;
}

.admin-toggle input:checked + .admin-toggle-track::after { transform: translateX(16px); }

.admin-status-badge {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
}

.badge-published { background: rgba(100,200,130,0.12); color: rgba(100,220,150,0.8); }
.badge-draft { background: rgba(245,240,232,0.06); color: rgba(245,240,232,0.35); }

.rich-toolbar {
  display: flex;
  gap: 0.25rem;
  padding: 0.5rem;
  background: rgba(245,240,232,0.04);
  border: 1px solid rgba(245,240,232,0.1);
  border-bottom: none;
}

.rich-toolbar button {
  background: none;
  border: none;
  color: rgba(245,240,232,0.5);
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
}

.rich-toolbar button:hover { background: rgba(245,240,232,0.08); color: var(--paper); }

.rich-editor {
  width: 100%;
  min-height: 200px;
  background: rgba(245,240,232,0.04);
  border: 1px solid rgba(245,240,232,0.1);
  padding: 1rem;
  color: var(--paper);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  line-height: 1.7;
  outline: none;
  border-radius: 0;
}

.rich-editor:focus { border-color: rgba(201,168,76,0.4); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-eyebrow { animation: fadeUp 0.7s ease 0.2s both; }
.hero-title   { animation: fadeUp 0.8s ease 0.35s both; }
.hero-body    { animation: fadeUp 0.8s ease 0.5s both; }
.hero-actions { animation: fadeUp 0.8s ease 0.65s both; }
.hero-right   { animation: fadeIn 1.2s ease 0.4s both; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .books-page-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo { position: static; }
  .featured-post-card { grid-template-columns: 1fr; }
  .featured-post-body { padding: 0 2rem 2rem; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(14,11,15,0.98);
    align-items: center;
    padding: 2rem 0 2.5rem;
    gap: 2rem;
    border-top: 1px solid rgba(201,168,76,0.2);
  }
  .nav-links.open a { font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .hero { grid-template-columns: 1fr; padding-top: 7rem; }
  .hero-right { display: none; }
  .hero-left { padding: 2rem 1.5rem; }

  .featured-grid,
  .books-grid,
  .books-page-grid,
  .album-grid,
  .blog-grid,
  .streaming-grid,
  .newsletter { grid-template-columns: 1fr; }

  .music-teaser { grid-template-columns: 1fr; }
  .music-right { display: none; }

  .contact-layout { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }

  .page-hero { padding: 8rem 1.5rem 3rem; }
  .featured { padding: 4rem 1.5rem; }
  .all-books { padding: 3rem 1.5rem; }
  .quote-band { padding: 3rem 1.5rem; }
  .newsletter { padding: 3rem 1.5rem; }
  footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }

  .admin-main { flex-direction: column; }
  .admin-sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--ghost); padding: 0.5rem 0; }
  .admin-nav-item { display: inline-block; width: auto; border-left: none; border-bottom: 2px solid transparent; padding: 0.5rem 1rem; }
  .admin-nav-item.active { border-left: none; border-bottom-color: var(--gold); }
  .admin-form-grid { grid-template-columns: 1fr; }
}
