/* ═══════════════════════════════════════════════════
   HAMMER & ANVIL BOOKS — main.css
   ═══════════════════════════════════════════════════ */

:root {
  --fire:        #c8441a;
  --fire-light:  #e8622a;
  --fire-glow:   rgba(200,68,26,0.15);
  --ice:         #4a9abb;
  --ice-light:   #6bb8d4;
  --ice-glow:    rgba(74,154,187,0.12);
  --gold:        #c9a84c;
  --gold-dim:    rgba(201,168,76,0.18);
  --bg:          #080604;
  --bg2:         #0e0b07;
  --bg3:         #141009;
  --surface:     #1a1510;
  --surface2:    #221c13;
  --border:      rgba(201,168,76,0.14);
  --border-mid:  rgba(201,168,76,0.28);
  --border-hi:   rgba(201,168,76,0.45);
  --text:        #ede4d2;
  --text-dim:    #a89880;
  --text-muted:  #5a5040;
  --nav-h:       72px;
  --radius:      4px;
  --transition:  0.25s ease;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Crimson Pro', Georgia, 'Times New Roman', serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Noise texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── TYPOGRAPHY ─── */
.eyebrow {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 10px;
}

h1, h2, h3 { font-family: 'Cinzel', serif; }

/* ─── UTILITY ─── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.divider-rune {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px auto 24px;
  width: fit-content;
  opacity: 0.35;
}
.divider-rune::before,
.divider-rune::after {
  content: '';
  display: block;
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.divider-rune::after { background: linear-gradient(90deg, var(--gold), transparent); }
.rune-diamond {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  line-height: 1.1;
}
.section-desc {
  font-size: 17px;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 8px;
}
.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-fire {
  background: transparent;
  border-color: var(--fire);
  color: var(--fire-light);
}
.btn-fire:hover {
  background: rgba(200,68,26,0.14);
  border-color: var(--fire-light);
  color: #ff7a4a;
  box-shadow: 0 0 20px rgba(200,68,26,0.2);
}
.btn-outline {
  background: transparent;
  border-color: var(--border-mid);
  color: var(--text-dim);
}
.btn-outline:hover {
  border-color: var(--border-hi);
  color: var(--text);
}
.btn-ice {
  background: transparent;
  border-color: var(--ice);
  color: var(--ice-light);
}
.btn-ice:hover {
  background: rgba(74,154,187,0.12);
  color: #8dd4f0;
  box-shadow: 0 0 20px rgba(74,154,187,0.15);
}

/* read more */
.read-more {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fire-light);
  opacity: 0.7;
  display: inline-block;
  margin-top: 4px;
  transition: opacity var(--transition);
}
.read-more:hover { opacity: 1; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,6,4,0.96);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  flex: 1;
}
.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }

.nav-link {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--fire-light);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--text); }
.nav-link.active::after,
.nav-link:hover::after { transform: scaleX(1); }

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(200,68,26,0.3));
  transition: filter var(--transition);
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 14px rgba(200,68,26,0.5));
}

/* Logo fallback if image missing */
.nav-logo-fallback {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.nav-logo-fallback .f { color: var(--fire-light); }
.nav-logo-fallback .i { color: var(--ice-light); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text-dim);
  transition: all var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(8,6,4,0.98);
  border-bottom: 1px solid var(--border);
  padding: 20px 32px 28px;
  gap: 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--transition);
}
.nav-mobile-link:hover,
.nav-mobile-link.active { color: var(--text); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-fire {
  position: absolute;
  left: -10%;
  top: -10%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at 30% 40%, rgba(200,68,26,0.18) 0%, rgba(180,50,10,0.08) 40%, transparent 70%);
  animation: pulse-fire 6s ease-in-out infinite alternate;
}
.hero-ice {
  position: absolute;
  right: -10%;
  top: -10%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at 70% 40%, rgba(74,154,187,0.14) 0%, rgba(50,120,160,0.06) 40%, transparent 70%);
  animation: pulse-ice 7s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(8,6,4,0.3) 0%,
    rgba(8,6,4,0) 30%,
    rgba(8,6,4,0) 60%,
    rgba(8,6,4,0.8) 85%,
    rgba(8,6,4,1) 100%);
}

@keyframes pulse-fire {
  from { opacity: 0.7; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.05); }
}
@keyframes pulse-ice {
  from { opacity: 0.6; transform: scale(1.03); }
  to   { opacity: 1;   transform: scale(1); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1160px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) 32px 40px;
  width: 100%;
}

/* ─── BOOK COVER VISUALS ─── */
.book-cover {
  border-radius: 3px;
  overflow: hidden;
  box-shadow:
    -8px 8px 24px rgba(0,0,0,0.8),
    0 0 40px rgba(200,68,26,0.15),
    inset -2px 0 6px rgba(0,0,0,0.5);
  position: relative;
  flex-shrink: 0;
}
.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.book-cover--hero {
  width: 220px;
  height: 330px;
  transform: perspective(800px) rotateY(8deg);
  transition: transform var(--transition);
}
.book-cover--hero:hover {
  transform: perspective(800px) rotateY(4deg) translateY(-4px);
}
.book-cover--card {
  width: 100%;
  aspect-ratio: 2/3;
}

.book-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1a0e06 0%, #0d0804 50%, #060d14 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--border);
}
.book-placeholder-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: var(--text);
}
.book-placeholder-title small {
  font-size: 0.65em;
  color: var(--text-dim);
  display: block;
}
.book-placeholder-sub {
  font-size: 11px;
  font-style: italic;
  color: var(--fire-light);
  text-align: center;
  opacity: 0.8;
  letter-spacing: 0.05em;
}
.book-placeholder--soon { opacity: 0.4; }

.book-cover--island .book-placeholder {
  background: linear-gradient(160deg, #0a1018 0%, #060c12 50%, #120a06 100%);
}
.book-cover--soon .book-placeholder {
  background: linear-gradient(160deg, #0e0e0e 0%, #080808 100%);
}

/* ─── HERO CONTENT ─── */
.hero-content {
  max-width: 520px;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-title-fire { color: var(--fire-light); }
.hero-title-ice  { color: var(--ice-light); }

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── HERO NEWS STRIP ─── */
.hero-news {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: rgba(8,6,4,0.7);
  backdrop-filter: blur(8px);
  padding: 22px 32px;
}
.hero-news-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.55;
  display: block;
  text-align: center;
  margin-bottom: 16px;
}
.hero-news-items {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hero-news-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: opacity var(--transition);
}
.hero-news-item:hover { opacity: 0.85; }
.hero-news-thumb {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.placeholder-thumb {
  background: linear-gradient(135deg, #2a1008, #0a0804);
}
.placeholder-thumb--2 {
  background: linear-gradient(135deg, #0a1828, #080604);
}
.hero-news-title {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 4px;
}
.hero-news-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── SERIES SECTION ─── */
.series-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%);
}

.books-grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.book-card {
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}
.book-card:hover { transform: translateY(-4px); }
.book-card--soon { opacity: 0.55; }
.book-card--soon:hover { opacity: 0.75; transform: translateY(-2px); }

.book-card-body {
  padding: 18px 0 0;
}
.book-number {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 4px;
}
.book-card-title {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.book-card-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 14px;
}
.buy-links { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.buy-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.buy-icons { display: flex; gap: 8px; }
.buy-icon {
  font-size: 18px;
  color: var(--text-muted);
  transition: color var(--transition), transform var(--transition);
  line-height: 1;
}
.buy-icon:hover { color: var(--text); transform: scale(1.15); }

/* ─── FAN ART PREVIEW ─── */
.fanart-preview {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.fanart-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.fanart-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.fanart-thumb:hover {
  transform: scale(1.04);
  border-color: var(--border-mid);
}
.fanart-placeholder {
  background: linear-gradient(135deg, var(--c1), var(--c2));
  opacity: 0.5;
}
.fanart-placeholder:hover { opacity: 0.75; }

/* ─── FOOTER ─── */
.footer {
  padding: 60px 32px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-follow {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}
.footer-social {
  color: var(--text-muted);
  transition: color var(--transition), transform var(--transition);
}
.footer-social:hover {
  color: var(--text);
  transform: translateY(-2px);
}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.footer-logo-fire { color: var(--fire-light); }
.footer-logo-ice  { color: var(--ice-light); }
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── PAGE HEADER (inner pages) ─── */
.page-header {
  padding: calc(var(--nav-h) + 80px) 32px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,68,26,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-header h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 12px;
}
.page-header p {
  font-size: 18px;
  color: var(--text-dim);
  font-style: italic;
}

/* ─── BOOKS PAGE ─── */
.books-page { padding: 60px 0 100px; }
.books-page .books-grid--4 { row-gap: 60px; }

/* ─── FAN ART PAGE ─── */
.fanart-page { padding: 60px 0 100px; }

.fanart-full-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 60px;
}
.fanart-full-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
  cursor: pointer;
}
.fanart-full-thumb:hover {
  transform: scale(1.03);
  border-color: var(--border-mid);
}
.fanart-full-thumb .fanart-placeholder { opacity: 0.45; }
.fanart-full-thumb:hover .fanart-placeholder { opacity: 0.7; }

.submit-section {
  border-top: 1px solid var(--border);
  padding-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.submit-section h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 12px;
}
.submit-section p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}
.rules-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rules-list li {
  font-size: 15px;
  color: var(--text-dim);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.rules-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--fire-light);
  opacity: 0.6;
}

/* ─── ABOUT PAGE ─── */
.about-page { padding: 60px 0 100px; }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}
.about-sections {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-section {
  border-left: 2px solid var(--border);
  padding-left: 28px;
  position: relative;
}
.about-section-icon {
  position: absolute;
  left: -12px;
  top: 2px;
  width: 22px;
  height: 22px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.about-section h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.8;
}
.about-section p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dim);
}
.about-visual {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.about-logo-large {
  width: 280px;
  height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(200,68,26,0.2));
}
.about-logo-placeholder {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,68,26,0.08) 0%, rgba(74,154,187,0.06) 50%, transparent 70%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-placeholder .logo-text {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.06em;
}
.about-logo-placeholder .logo-text .f { color: var(--fire-light); }
.about-logo-placeholder .logo-text .i { color: var(--ice-light); }
.about-tagline {
  font-size: 16px;
  font-style: italic;
  color: var(--text-dim);
  text-align: center;
  opacity: 0.7;
}

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .books-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .fanart-full-grid { grid-template-columns: repeat(4, 1fr); }
  .about-layout { grid-template-columns: 1fr; }
  .about-visual { position: static; flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-logo-img { height: 42px; }

  .hero-inner {
    flex-direction: column;
    gap: 40px;
    padding-top: calc(var(--nav-h) + 40px);
    text-align: center;
  }
  .hero-actions { justify-content: center; }
  .book-cover--hero { width: 160px; height: 240px; transform: none; }
  .hero-news-items { grid-template-columns: 1fr; }

  .books-grid--4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .fanart-grid { grid-template-columns: repeat(3, 1fr); }
  .fanart-full-grid { grid-template-columns: repeat(3, 1fr); }
  .submit-section { grid-template-columns: 1fr; gap: 40px; }

  .container { padding: 0 20px; }
  .hero-news { padding: 20px; }
  .series-section, .fanart-preview { padding: 70px 0; }
}

@media (max-width: 480px) {
  .books-grid--4 { grid-template-columns: 1fr 1fr; }
  .fanart-grid { grid-template-columns: repeat(2, 1fr); }
  .fanart-full-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 28px; }
}

/* ═══════════════════════════════════════════════════
   HOMEPAGE — FULL SCREEN HERO
   ═══════════════════════════════════════════════════ */

.home-page { overflow: hidden; }
.home-page .footer { position: relative; z-index: 2; }

.hero-full {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-full-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hf-fire {
  position: absolute;
  left: 0; top: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 20% 50%,
    rgba(200,68,26,0.22) 0%,
    rgba(160,40,10,0.10) 40%,
    transparent 70%);
  animation: pulse-fire 6s ease-in-out infinite alternate;
}
.hf-ice {
  position: absolute;
  right: 0; top: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%,
    rgba(74,154,187,0.18) 0%,
    rgba(40,100,140,0.08) 40%,
    transparent 70%);
  animation: pulse-ice 7s ease-in-out infinite alternate;
}
.hf-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(8,6,4,0.5) 100%),
    linear-gradient(180deg, rgba(8,6,4,0.4) 0%, transparent 15%, transparent 75%, rgba(8,6,4,0.95) 100%);
}

.hero-full-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 50px) 48px 40px;
}

/* ── Book visual ── */
.hf-book-wrap {
  flex-shrink: 0;
  perspective: 1000px;
}
.hf-book {
  width: 240px;
  height: 360px;
  border-radius: 4px 8px 8px 4px;
  box-shadow:
    -12px 16px 40px rgba(0,0,0,0.9),
    0 0 60px rgba(200,68,26,0.18),
    0 0 120px rgba(74,154,187,0.08),
    inset -3px 0 8px rgba(0,0,0,0.6);
  transform: perspective(900px) rotateY(10deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  overflow: hidden;
  position: relative;
  animation: bookFloat 5s ease-in-out infinite alternate;
}
.hf-book:hover {
  transform: perspective(900px) rotateY(4deg) translateY(-6px);
  box-shadow:
    -16px 24px 50px rgba(0,0,0,0.9),
    0 0 80px rgba(200,68,26,0.25),
    0 0 150px rgba(74,154,187,0.12),
    inset -3px 0 8px rgba(0,0,0,0.6);
}
@keyframes bookFloat {
  from { transform: perspective(900px) rotateY(10deg) translateY(0); }
  to   { transform: perspective(900px) rotateY(8deg) translateY(-8px); }
}

.hf-book-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hf-book-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #200e06 0%, #0c0806 45%, #060d18 100%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--border);
}
.hf-bp-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: var(--text);
}
.hf-bp-title small {
  font-size: 0.6em;
  color: var(--text-dim);
  display: block;
}
.hf-bp-sub {
  font-size: 12px;
  font-style: italic;
  color: var(--fire-light);
  text-align: center;
  opacity: 0.8;
  letter-spacing: 0.05em;
}

/* ── Hero content ── */
.hf-content {
  max-width: 500px;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hf-series {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 14px;
}
.hf-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  opacity: 0.3;
}
.hf-divider::before,
.hf-divider::after {
  content: '';
  display: block;
  height: 1px;
  width: 50px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hf-divider::after { background: linear-gradient(90deg, var(--gold), transparent); }
.hf-diamond {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hf-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hf-fire { color: var(--fire-light); display: block; }
.hf-and  { color: var(--text-dim); font-size: 0.38em; letter-spacing: 0.4em; font-weight: 400; margin: 4px 0; display: block; }
.hf-ice  { color: var(--ice-light); display: block; }

.hf-tagline {
  font-size: 15px;
  font-style: italic;
  color: var(--gold);
  opacity: 0.7;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.hf-desc {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 36px;
  max-width: 440px;
}
.hf-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Bottom strip ── */
.hf-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border);
  background: rgba(8,6,4,0.85);
  backdrop-filter: blur(10px);
}
.hf-strip-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 20px;
  gap: 4px;
  transition: background var(--transition);
  text-align: center;
}
.hf-strip-item:hover { background: rgba(201,168,76,0.04); }
.hf-strip-icon { font-size: 20px; margin-bottom: 4px; }
.hf-strip-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}
.hf-strip-sub {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}
.hf-strip-divider {
  width: 1px;
  background: var(--border);
  margin: 12px 0;
}

/* ── Nav always visible on inner pages ── */
.nav.scrolled {
  background: rgba(8,6,4,0.97);
  border-bottom-color: var(--border);
}

/* ── Responsive hero ── */
@media (max-width: 900px) {
  .hero-full-inner {
    flex-direction: column;
    gap: 40px;
    padding-top: calc(var(--nav-h) + 40px);
    text-align: center;
  }
  .hf-content { max-width: 100%; }
  .hf-actions { justify-content: center; }
  .hf-book { width: 180px; height: 270px; animation: none; transform: none; }
  .hf-divider { justify-content: center; }
  .hf-title { align-items: center; }
  .hf-desc { margin-left: auto; margin-right: auto; }
}

@media (max-width: 600px) {
  .hf-strip { flex-direction: column; }
  .hf-strip-divider { width: 100%; height: 1px; margin: 0; }
  .hf-strip-item { padding: 16px; flex-direction: row; gap: 12px; text-align: left; justify-content: flex-start; }
}

/* Coming Soon section — no body text */
.about-section--soon {
  opacity: 0.4;
  border-left-color: var(--border-mid);
}
.about-section--soon h3 {
  font-style: italic;
  opacity: 0.7;
}
