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

:root {
  --navy-deep: #050b1f;
  --navy-mid:  #07112e;
  --navy-light:#0d1d4a;
  --gold:      #c9a84c;
  --gold-bright:#e8c878;
  --gold-dim:  #9a7a34;
  --text-warm: #f0ead8;
  --text-muted:#8a9bb8;
  --text-dim:  #4a5a78;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy-deep);
  color: var(--text-warm);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
  cursor: none;
  overflow-x: hidden;
}

/* ─── THREE.JS CANVAS ─── */
#starfield-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* ─── CUSTOM CURSOR ─── */
#cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.2s;
}
#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(201,168,76,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--gold-bright);
}

/* ─── ALL SECTIONS ABOVE THREE.JS ─── */
section, nav, footer, header {
  position: relative;
  z-index: 1;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(5,11,31,0.92) 0%, transparent 100%);
  backdrop-filter: blur(2px);
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(5,11,31,0.96);
  padding: 16px 60px;
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-bright); }

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── GOLD RULE LINE ─── */
.gold-rule {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform-origin: left;
  transform: scaleX(0);
  margin: 32px auto;
  max-width: 320px;
}
.gold-rule.full { max-width: 100%; margin: 0; }

/* ─── SECTION WRAPPER ─── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── FLOATING GOLD PARTICLES ─── */
.particles-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
}

/* ════════════════════════════════
   HERO SECTION
════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-geometry {
  width: min(380px, 72vw);
  height: min(380px, 72vw);
  margin: 0 auto 48px;
  position: relative;
  will-change: transform;
}
.hero-geometry svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 28px rgba(201,168,76,0.25));
}

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-warm);
  letter-spacing: 0.03em;
  max-width: 760px;
  margin: 0 auto 16px;
  opacity: 0;
}
.hero-title em {
  color: var(--gold);
  font-style: normal;
}

.hero-subtitle {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  opacity: 0;
}

.hero-author {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 48px;
  opacity: 0;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  padding: 14px 36px;
  border: none;
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.3s;
  opacity: 0;
}
.hero-cta:hover {
  box-shadow: 0 0 32px rgba(201,168,76,0.5);
  transform: translateY(-2px);
}
.hero-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  padding: 13px 36px;
  border: 1px solid rgba(201,168,76,0.4);
  text-decoration: none;
  margin-left: 16px;
  transition: border-color 0.3s, color 0.3s;
  opacity: 0;
}
.hero-cta-ghost:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}
.scroll-indicator span {
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ════════════════════════════════
   ABOUT SECTION
════════════════════════════════ */
#about {
  padding: 120px 0;
  background: linear-gradient(to bottom, transparent, rgba(7,17,46,0.7) 30%, rgba(7,17,46,0.7) 70%, transparent);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.about-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-warm);
  margin-bottom: 28px;
}
.about-text {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-quote-wrap {
  margin: 32px 0 20px;
}
.about-quote {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-style: italic;
  color: var(--gold-dim);
  border-left: 2px solid var(--gold-dim);
  padding-left: 24px;
  margin: 0;
  line-height: 1.75;
}
.about-image-wrap {
  position: relative;
}
.about-book-img {
  width: 100%;
  max-width: 340px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.7)) drop-shadow(0 0 40px rgba(201,168,76,0.15));
  transition: transform 0.6s ease;
}
.about-book-img:hover {
  transform: scale(1.03) rotate(1deg);
}
.about-amazon-btn {
  display: inline-flex;
  margin-top: 16px;
  margin-left: 24px;
  align-items: center;
  gap: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  padding: 10px 22px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  transition: box-shadow 0.3s, transform 0.3s;
}
.about-amazon-btn i {
  font-size: 1.2rem;
  color: var(--navy-deep);
}
.about-amazon-btn:hover {
  box-shadow: 0 6px 28px rgba(201,168,76,0.5);
  transform: translateY(-2px);
}
.about-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ════════════════════════════════
   BOOK SECTION
════════════════════════════════ */
#book {
  padding: 100px 0 120px;
  text-align: center;
}
.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.section-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 600;
  color: var(--text-warm);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-sub {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 64px;
}

.book-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  perspective: 1200px;
}
.book-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out, box-shadow 0.4s;
  cursor: none;
}
.book-card img {
  width: 100%;
  display: block;
  filter: brightness(0.92);
  transition: filter 0.4s;
}
.book-card:hover img {
  filter: brightness(1.05);
}
.book-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
}
.book-card:hover .book-card-shine { opacity: 1; }

.book-details {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.book-detail-item {
  text-align: left;
}
.book-detail-label {
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 6px;
}
.book-detail-value {
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  color: var(--text-warm);
}

/* ════════════════════════════════
   AUTHOR SECTION
════════════════════════════════ */
#author {
  padding: 120px 0;
  background: linear-gradient(to bottom, transparent, rgba(7,17,46,0.7) 30%, rgba(7,17,46,0.7) 70%, transparent);
}
.author-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}
.author-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.author-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,168,76,0.3);
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.7)) drop-shadow(0 0 40px rgba(201,168,76,0.15));
  transition: transform 0.6s ease;
}
.author-img:hover {
  transform: scale(1.03);
}
.author-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.author-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 500;
  color: var(--text-warm);
  margin-bottom: 24px;
}

/* ════════════════════════════════
   POEMS SECTION
════════════════════════════════ */
#poems {
  padding: 120px 0;
  background: linear-gradient(to bottom, transparent, rgba(5,11,31,0.8) 20%, rgba(5,11,31,0.8) 80%, transparent);
}
.poems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 64px;
}
.poem-card {
  padding: 48px 40px;
  border: 1px solid rgba(201,168,76,0.12);
  background: rgba(13,29,74,0.3);
  backdrop-filter: blur(8px);
  position: relative;
}
.poem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent);
  pointer-events: none;
}
.poem-title {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.poem-line {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 17px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 2;
  display: block;
  opacity: 0;
  transform: translateY(8px);
}
.poem-attribution {
  margin-top: 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ════════════════════════════════
   REVIEWS - HORIZONTAL SCROLL
════════════════════════════════ */
#reviews {
  padding: 120px 0;
  overflow: hidden;
}
.reviews-track-wrapper {
  overflow: hidden;
  margin-top: 64px;
}
.reviews-track {
  display: flex;
  gap: 32px;
  width: max-content;
}
.review-card {
  width: 420px;
  flex-shrink: 0;
  padding: 48px 40px;
  border: 1px solid rgba(201,168,76,0.14);
  background: rgba(7,17,46,0.6);
  backdrop-filter: blur(12px);
  position: relative;
}
.review-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}
.review-star {
  width: 12px;
  height: 12px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.review-text {
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--text-warm);
  line-height: 1.85;
  margin-bottom: 28px;
}
.review-author {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.review-role {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-top: 4px;
}
.review-accent {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
}

/* ════════════════════════════════
   PHILOSOPHY / QUOTE SECTION
════════════════════════════════ */
#philosophy {
  padding: 140px 0;
  text-align: center;
}
.philosophy-geometry {
  width: 120px;
  height: 120px;
  margin: 0 auto 48px;
  opacity: 0.4;
}
.philosophy-quote {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-style: italic;
  color: var(--text-warm);
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.65;
}
.philosophy-attr {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ════════════════════════════════
   ORDER / BUY SECTION
════════════════════════════════ */
#order {
  padding: 100px 0 120px;
  text-align: center;
}
.order-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(7,17,46,0.5);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
.order-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.order-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 600;
  color: var(--text-warm);
  margin-bottom: 12px;
}
.order-sub {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.order-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-gold {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  padding: 14px 36px;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: box-shadow 0.3s, transform 0.3s;
}
.btn-gold:hover {
  box-shadow: 0 0 28px rgba(201,168,76,0.5);
  transform: translateY(-2px);
}
.btn-outline {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  padding: 13px 36px;
  border: 1px solid rgba(201,168,76,0.4);
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  padding: 60px 40px;
  border-top: 1px solid rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: rgba(5,11,31,0.8);
}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold-dim);
  text-transform: uppercase;
}
.footer-copy {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-dim);
}
.footer-publisher {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-dim);
}

/* ════════════════════════════════
   INNER PAGE - 3D HERO BANNER
════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 40px 90px;
  overflow: hidden;
  perspective: 1200px;
}
.page-hero-geometry {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, 90vw);
  height: min(560px, 90vw);
  transform: translate(-50%, -50%);
  opacity: 0.22;
  pointer-events: none;
  will-change: transform;
  z-index: 0;
}
.page-hero-geometry svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.3));
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 26px;
}
.breadcrumb a {
  color: var(--gold-dim);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb .sep { color: var(--text-dim); }
.breadcrumb .current { color: var(--text-muted); }
.page-hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}
.page-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.03em;
  color: var(--text-warm);
  max-width: 900px;
  margin: 0 auto 20px;
  text-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.page-hero-title em { color: var(--gold); font-style: normal; }
.page-hero-sub {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  max-width: 640px;
  margin: 0 auto;
}
.page-hero .gold-rule { margin-top: 34px; }

/* ─── INNER PAGE CTA STRIP ─── */
.cta-strip {
  padding: 90px 0 120px;
  text-align: center;
}
.cta-strip-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 48px;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(7,17,46,0.5);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
.cta-strip-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--text-warm);
  margin-bottom: 12px;
}
.cta-strip-sub {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ─── BUY BUTTON BRAND ICONS ─── */
.btn-gold i, .btn-outline i, .hero-cta i, .hero-cta-ghost i { font-size: 1.15rem; }

/* ════════════════════════════════
   CONTACT PAGE
════════════════════════════════ */
#contact {
  padding: 40px 0 120px;
  text-align: center;
}
.contact-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 64px 56px;
  border: 1px solid rgba(201,168,76,0.22);
  background: rgba(7,17,46,0.55);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201,168,76,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.contact-card:hover {
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(201,168,76,0.08);
}
.contact-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.35);
  background: radial-gradient(circle at 30% 25%, rgba(201,168,76,0.22), rgba(7,17,46,0.2));
  box-shadow: inset 0 2px 12px rgba(201,168,76,0.15), 0 10px 30px rgba(0,0,0,0.4);
}
.contact-icon i {
  font-size: 2rem;
  color: var(--gold-bright);
}
.contact-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.contact-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 600;
  color: var(--text-warm);
  margin-bottom: 16px;
}
.contact-text {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 460px;
  margin: 0 auto 34px;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  text-decoration: none;
  padding: 18px 34px;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(5,11,31,0.4);
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  z-index: 1;
}
.contact-email i { font-size: 1.15rem; color: var(--gold); }
.contact-email:hover {
  border-color: var(--gold-bright);
  color: #fff;
  box-shadow: 0 0 30px rgba(201,168,76,0.35);
  transform: translateY(-2px);
}
.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  padding: 14px 36px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.3s, transform 0.3s;
}
.contact-cta-btn:hover {
  box-shadow: 0 0 28px rgba(201,168,76,0.5);
  transform: translateY(-2px);
}
.contact-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 34px auto 0;
  max-width: 300px;
  color: var(--gold-dim);
}
.contact-divider span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}
.contact-divider .pi {
  font-family: 'EB Garamond', serif;
  font-size: 20px;
  color: var(--gold-dim);
}
@media (max-width: 640px) {
  .contact-card { padding: 44px 26px; }
  .contact-email { font-size: 0.95rem; padding: 16px 22px; word-break: break-all; }
}

/* ─── CONTACT GRID + FORM ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto;
  text-align: left;
  align-items: stretch;
}
.contact-form-card {
  padding: 48px 44px;
  border: 1px solid rgba(201,168,76,0.22);
  background: rgba(7,17,46,0.55);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.contact-form-title {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-warm);
  margin-bottom: 6px;
}
.contact-form-note {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.contact-form { position: relative; z-index: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 16px;
  color: var(--text-warm);
  background: rgba(5,11,31,0.5);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  cursor: none;
}
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-bright);
  background: rgba(5,11,31,0.75);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.25), 0 0 26px rgba(201,168,76,0.12);
}
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  padding: 15px 40px;
  border: none;
  cursor: none;
  transition: box-shadow 0.3s, transform 0.3s;
}
.form-submit:hover { box-shadow: 0 0 28px rgba(201,168,76,0.5); transform: translateY(-2px); }
.form-status {
  margin-top: 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  min-height: 18px;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .contact-form-card { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ─── REVEAL CLASSES ─── */
.reveal-up    { opacity: 0; transform: translateY(40px); }
.reveal-left  { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }
.reveal-scale { opacity: 0; transform: scale(0.88); }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 20px 32px; }
  nav.scrolled { padding: 14px 32px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { order: -1; }
  .author-inner { grid-template-columns: 1fr; gap: 48px; }
  .author-image-wrap { order: -1; }
  .book-gallery { grid-template-columns: repeat(2, 1fr); }
  .poems-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section-inner { padding: 0 24px; }
  .book-gallery { grid-template-columns: 1fr 1fr; gap: 12px; }
  .order-box { padding: 40px 24px; }
  footer { flex-direction: column; text-align: center; padding: 40px 24px; }
  .hero-cta-ghost { margin-left: 0; margin-top: 8px; }
  #hero { padding: 100px 24px 80px; }
  .review-card { width: 300px; padding: 32px 24px; }
  .poem-card { padding: 36px 24px; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-geometry svg { animation: none !important; }
}
