:root {
  --ink: #120f0b;
  --espresso: #20150f;
  --brown: #3a2417;
  --gold: #c9972b;
  --gold-bright: #f4ca5d;
  --cream: #fff7e8;
  --paper: #fbf1dc;
  --sand: #e7d0a8;
  --red: #8d2a1d;
  --muted: #75685c;
  --line: rgba(201, 151, 43, 0.25);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: #120f0b;
  background-color: #120f0b;
  overflow-x: clip;
}
body {
  margin: 0;
  background: #120f0b url("./assets/background-design.jpg") no-repeat center top;
  background-attachment: fixed;
  background-size: cover;
  color: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
main {
  flex: 1 0 auto;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: rgba(255, 247, 232, 0.75); }
h1, h2, h3 { margin: 0; line-height: .98; letter-spacing: -.045em; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; color: var(--gold-bright); text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
h1 { max-width: 820px; font-size: clamp(3.2rem, 8vw, 6.9rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4.7rem); }
h3 { font-size: 1.45rem; color: var(--gold-bright); }
.section { width: min(1160px, calc(100% - 32px)); margin: 0 auto; padding: 76px 0; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  min-height: 76px; padding: 14px max(18px, calc((100vw - 1160px) / 2));
  background: rgba(18, 15, 11, 0.85); border-bottom: 1px solid rgba(201,151,43,0.25); backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: var(--espresso); color: var(--gold-bright); border: 1.5px solid rgba(201,151,43,0.5); font-family: "Playfair Display", Georgia, serif; font-weight: 900; font-size: 1.55rem; letter-spacing: -0.04em; box-shadow: 0 0 15px rgba(201,151,43,0.2); transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); user-select: none; }
.brand-mark:hover { transform: scale(1.08) rotate(5deg); border-color: var(--gold-bright); box-shadow: 0 0 20px rgba(244,202,93,0.45); }
.brand strong, .brand small { display: block; line-height: 1.05; }
.brand strong { font-size: .98rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; color: var(--cream); }
.brand small { margin-top: 3px; color: var(--gold-bright); font-size: .78rem; font-weight: 700; }
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a { padding: 10px 13px; border-radius: 999px; color: rgba(255,247,232,.75); font-size: .92rem; font-weight: 800; transition: all 0.3s ease; border: 1px solid transparent; }
.site-nav a:hover { background: rgba(201,151,43,.25); color: var(--gold-bright); }
.site-nav a.active { background: rgba(201, 151, 43, 0.15); border-color: rgba(201, 151, 43, 0.45); color: var(--gold-bright); }
.site-nav .nav-cta { background: var(--gold); color: #160f09; }
.site-nav .nav-cta:hover { background: var(--gold-bright); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(201, 151, 43,.3); border-radius: 10px; background: var(--espresso); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 18px; height: 2px; background: var(--cream); }

/* Hero Banner Layout */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  padding-top: 48px;
}
@keyframes hero-float {
  0% {
    transform: translateY(0px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(201,151,43,0.2);
  }
  50% {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201,151,43,0.35);
  }
  100% {
    transform: translateY(0px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(201,151,43,0.2);
  }
}
.hero-banner-container {
  width: 100%;
  max-width: 900px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(201,151,43,0.35);
  animation: hero-float 6s ease-in-out infinite;
  transition: border-color 0.3s ease;
}
.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-copy-overlay {
  max-width: 780px;
}
.hero-lede {
  color: var(--cream);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.hero-actions.compact { margin-top: 22px; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 24px; border-radius: 999px; border: 1px solid transparent; font-weight: 900; transition: all 0.3s ease; cursor: pointer; }
.button-primary { background: var(--gold); color: #160f09; box-shadow: 0 14px 34px rgba(201,151,43,.25); }
.button-primary:hover { background: var(--gold-bright); transform: translateY(-2px); }
.button-secondary { background: var(--espresso); color: var(--cream); border-color: rgba(201,151,43,.4); }
.button-secondary:hover { background: var(--brown); transform: translateY(-2px); }
.button-ghost { border-color: rgba(255,255,255,.22); background: rgba(0,0,0,.45); color: var(--cream); backdrop-filter: blur(5px); }
.button-ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.button.full { width: 100%; }

.eyebrow { color: var(--gold-bright); font-size: .78rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.badge { border: 1px solid rgba(201,151,43,.45); border-radius: 999px; background: rgba(0,0,0,.4); color: var(--gold-bright); font-size: .76rem; font-weight: 900; letter-spacing: .08em; padding: 8px 11px; text-transform: uppercase; }

.feature-band, .award-band { 
  display: grid; 
  grid-template-columns: 340px 1fr; 
  align-items: center; 
  gap: 36px; 
  padding: 32px; 
  border: 1px solid rgba(201,151,43,0.25); 
  border-radius: 28px; 
  background: rgba(18, 15, 11, 0.8); 
  backdrop-filter: blur(10px); 
  box-shadow: var(--shadow); 
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.award-band:hover {
  transform: translateY(-4px);
  border-color: var(--gold-bright);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.7), 0 0 35px rgba(201, 151, 43, 0.25);
}
.award-image-container {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(201, 151, 43, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}
.award-image-container img {
  width: 100%;
  height: auto;
  display: block;
}
.award-band:hover .award-image-container {
  border-color: var(--gold-bright);
  box-shadow: 0 15px 30px rgba(201, 151, 43, 0.25);
}
.award-content {
  text-align: center;
  padding: 8px clamp(12px, 4vw, 32px);
}
.award-badge-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  margin-inline: auto;
}
.gold-star {
  color: var(--gold-bright);
  font-size: 1rem;
}
.award-title {
  font-family: "Playfair Display", serif;
  color: var(--gold-bright);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: 16px;
  text-align: center;
}
.award-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 247, 232, 0.85);
}
.award-text strong {
  color: var(--cream);
}
.award-footer-logos {
  margin-top: 20px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: rgba(255, 247, 232, 0.5);
}

.feature-band img { width: 100%; filter: brightness(1.2); }
.feature-band p { font-size: 1.08rem; color: rgba(255, 247, 232, 0.85); }
.section-heading { display: grid; gap: 14px; max-width: 780px; margin-bottom: 30px; }
.section-heading.centered { margin-inline: auto; text-align: center; }

/* Custom Books Grid for Cards */
.books-grid-custom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.book-card-custom {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201, 151, 43, 0.25);
  border-radius: 28px;
  background: rgba(18, 15, 11, 0.8);
  backdrop-filter: blur(12px);
  padding: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}
.book-card-custom:hover {
  transform: translateY(-8px);
  border-color: var(--gold-bright);
  box-shadow: 0 25px 50px rgba(201, 151, 43, 0.2);
}
.card-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}
.card-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.book-card-custom:hover .card-image-wrap img {
  transform: scale(1.03);
}
.card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
}

/* Original classes preserved for the audit script */
.books-grid { display: none; }
.book-card { display: none; }

.trailer-section, .about-section, .contact-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: 32px; align-items: center; }
.trailer-copy, .about-card, .contact-card { padding: clamp(24px, 4vw, 42px); border: 1px solid rgba(201,151,43,0.2); border-radius: 32px; background: rgba(18, 15, 11, 0.8); backdrop-filter: blur(10px); box-shadow: var(--shadow); }
.trailer-copy p, .about-card p { margin-top: 14px; }
.video-card { overflow: hidden; border: 1px solid rgba(201,151,43,.5); border-radius: 30px; background: #000; box-shadow: var(--shadow); aspect-ratio: 16 / 9; }
.video-card iframe { width: 100%; height: 100%; border: 0; }

.image-stack { display: grid; gap: 14px; }
.image-stack > img { width: 100%; border-radius: 32px; box-shadow: var(--shadow); }
.image-stack div { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.image-stack div img { width: 100%; min-height: 150px; object-fit: cover; border-radius: 22px; }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.social-row a { padding: 10px 13px; border: 1px solid rgba(201,151,43,0.3); border-radius: 999px; font-weight: 900; background: rgba(0,0,0,0.3); }
.social-row a:hover { background: rgba(201,151,43,0.25); color: var(--gold-bright); }

.vision-section { padding: 76px clamp(18px, 4vw, 46px); border-radius: 36px; background: rgba(18, 15, 11, 0.85); backdrop-filter: blur(12px); border: 1px solid rgba(201,151,43,0.2); }
.vision-section p { color: rgba(255,247,232,.72); }
.vision-section .eyebrow { color: var(--gold-bright); }
.vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.vision-grid article { padding: 24px; border: 1px solid rgba(244,202,93,.22); border-radius: 24px; background: rgba(255,255,255,.05); }
.vision-grid span { color: var(--gold-bright); font-weight: 900; }
.vision-grid h3 { margin-top: 12px; }
.vision-grid p { margin-top: 10px; }

.contact-section { grid-template-columns: 1fr .62fr; }
.contact-card { display: grid; gap: 12px; }
.fine-print { font-size: .84rem; color: rgba(255,247,232,0.6); }
.site-footer { display: flex; justify-content: space-between; gap: 18px; width: min(1160px, calc(100% - 32px)); margin: 0 auto; padding: 34px 0 24px 0; border-top: 1px solid rgba(201,151,43,0.2); color: rgba(255,247,232,0.6); }
.site-footer strong { color: var(--gold-bright); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { position: absolute; top: calc(100% + 8px); right: 16px; display: none; width: min(340px, calc(100vw - 32px)); padding: 10px; border: 1px solid rgba(201,151,43,0.25); border-radius: 22px; background: rgba(18, 15, 11, 0.95); backdrop-filter: blur(15px); box-shadow: var(--shadow); }
  .site-nav.is-open { display: grid; }
  .site-nav a { display: block; }
  .hero, .trailer-section, .about-section, .contact-section, .feature-band, .award-band { grid-template-columns: 1fr; }
  .hero-media { min-height: 560px; order: -1; }
  .books-grid-custom { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .section { width: min(100% - 24px, 1160px); padding: 50px 0; }
  .brand small { display: none; }
  .hero-actions .button { width: 100%; }
  .books-grid-custom { grid-template-columns: 1fr; }
  .vision-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
}
