/* ============================================================
   Abel Press — Brand Stylesheet
   Colors: Navy #0D1232 | White #FFFFFF | Gold #C9A84C | Gray #F5F7FA
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&display=swap');

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

:root {
  --navy:   #0D1232;
  --navy2:  #1A2154;
  --white:  #FFFFFF;
  --gold:   #C9A84C;
  --gold2:  #E8C56A;
  --gray:   #F5F7FA;
  --gray2:  #E2E6EF;
  --text:   #1A1A2E;
  --muted:  #6B7280;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(13,18,50,0.10);
  --font:   -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

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

/* ---- Layout ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 20px; }

/* ---- Nav ---- */
.nav {
  background: var(--navy);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav__logo { display: flex; align-items: center; gap: 0; }
.nav__logo img { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.nav__logo-text {
  color: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-left: 3px;
}
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  color: rgba(255,255,255,0.80);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 8px 20px;
  border-radius: 6px;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: var(--gold2) !important; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold2); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn--large { padding: 20px 48px; font-size: 1.15rem; }
.btn--amazon { background: #FF9900; color: #111; }
.btn--amazon:hover { background: #FFB142; }

/* ---- Hero (book pages) ---- */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 80px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero__tag {
  display: inline-block;
  background: rgba(201,168,76,0.18);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero__headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero__headline em { color: var(--gold); font-style: normal; }
.hero__subheadline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero__meta {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.hero__price {
  margin-bottom: 24px;
}
.hero__price-amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero__price-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.hero__guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 14px;
}

/* Book cover */
.hero__cover {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.book-cover-wrapper {
  background: var(--navy2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  width: 220px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  position: relative;
  box-shadow: 8px 8px 30px rgba(0,0,0,0.4);
}
.book-cover-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.book-cover-placeholder {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  text-align: center;
}
.hero__stars { color: var(--gold); font-size: 1.1rem; }
.hero__reviews-count { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* ---- Pain section ---- */
.pain {
  background: var(--gray);
  padding: 72px 0;
}
.pain__headline {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 32px;
  text-align: center;
}
.pain__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.pain__list li {
  background: var(--white);
  border-left: 4px solid #E53E3E;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  font-size: 1rem;
  color: var(--text);
  box-shadow: var(--shadow);
}
.pain__list li::before { content: "✗ "; color: #E53E3E; font-weight: 700; }

/* ---- Solution / Intro ---- */
.solution {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}
.section-tag {
  display: inline-block;
  background: rgba(13,18,50,0.07);
  color: var(--navy);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-headline {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-subline {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

/* ---- Benefits ---- */
.benefits { padding: 80px 0; background: var(--navy); color: var(--white); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.benefit-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
}
.benefit-card__icon { font-size: 2rem; margin-bottom: 12px; }
.benefit-card__title { font-size: 1.05rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.benefit-card__text { font-size: 0.95rem; color: rgba(255,255,255,0.72); line-height: 1.6; }

/* ---- Reviews ---- */
.reviews { padding: 80px 0; background: var(--gray); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.review-card__stars { color: var(--gold); margin-bottom: 12px; font-size: 1rem; }
.review-card__text { font-size: 0.97rem; color: var(--text); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.review-card__author { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.review-card__verified { font-size: 0.78rem; color: #16A34A; font-weight: 500; }

/* ---- Author ---- */
.author { padding: 80px 0; background: var(--white); }
.author__inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  align-items: start;
}
.author__avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--gray2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}
.author__avatar img { width: 100%; height: 100%; object-fit: cover; }
.author__name { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.author__role { font-size: 0.9rem; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.author__bio { font-size: 0.97rem; color: var(--muted); line-height: 1.7; }

/* ---- Guarantee ---- */
.guarantee {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.guarantee__badge {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}
.guarantee__headline { font-size: 1.7rem; font-weight: 800; margin-bottom: 12px; }
.guarantee__text { font-size: 1rem; color: rgba(255,255,255,0.75); max-width: 540px; margin: 0 auto; }

/* ---- Final CTA ---- */
.final-cta {
  background: var(--white);
  padding: 96px 0;
  text-align: center;
}
.final-cta__box {
  background: var(--navy);
  border-radius: 16px;
  padding: 56px 40px;
  max-width: 720px;
  margin: 0 auto;
}
.final-cta__headline { font-size: 1.9rem; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.final-cta__subline { font-size: 1.05rem; color: rgba(255,255,255,0.72); margin-bottom: 32px; }
.final-cta__price { font-size: 3rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 24px; }
.final-cta__note { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-top: 16px; }

/* ---- Homepage Hero ---- */
.home-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: var(--white);
  padding: 100px 0 96px;
  text-align: center;
}
.home-hero__tag {
  display: inline-block;
  background: rgba(201,168,76,0.18);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.home-hero__headline {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.home-hero__headline em { color: var(--gold); font-style: normal; }
.home-hero__subline {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.home-hero__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Books grid (homepage) ---- */
.books-section { padding: 96px 0; background: var(--white); }
.books-section--alt { background: var(--gray); }
.category-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.book-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--gray2);
}
.book-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,18,50,0.14); }
.book-card__cover {
  background: var(--navy);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.book-card__cover img { height: 100%; width: auto; object-fit: contain; border-radius: 4px; }
.book-card__cover-placeholder {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  text-align: center;
  padding: 10px;
}
.book-card__body { padding: 20px; }
.book-card__category { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.book-card__title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.book-card__author { font-size: 0.82rem; color: var(--muted); margin-bottom: 12px; }
.book-card__stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 12px; }
.book-card__price { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.book-card__btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.2s;
}
.book-card__btn:hover { background: var(--navy2); }
.book-card__btn--gold { background: var(--gold); color: var(--navy); }
.book-card__btn--gold:hover { background: var(--gold2); }

/* ---- Mission strip ---- */
.mission {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.mission__quote {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.5;
  max-width: 760px;
  margin: 0 auto 16px;
  color: var(--white);
}
.mission__quote em { color: var(--gold); font-style: normal; }
.mission__attribution { font-size: 0.9rem; color: rgba(255,255,255,0.5); }

/* ---- Footer ---- */
.footer {
  background: #080D22;
  color: rgba(255,255,255,0.55);
  padding: 48px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__brand-logo { display: flex; align-items: center; gap: 10px; }
.footer__brand-logo img { width: 36px; height: 36px; border-radius: 50%; }
.footer__brand-name { color: var(--white); font-weight: 700; font-size: 1rem; }
.footer__tagline { font-size: 0.85rem; line-height: 1.6; }
.footer__col-title { color: var(--white); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: 0.88rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.footer__note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  max-width: 600px;
  margin: 12px auto 0;
  line-height: 1.5;
}

/* ---- Divider ---- */
.divider { height: 4px; background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy)); }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__cover { order: -1; }
  .book-cover-wrapper { width: 160px; height: 220px; }
  .author__inner { grid-template-columns: 1fr; }
  .author__avatar { width: 100px; height: 100px; }
  .footer__inner { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .home-hero { padding: 64px 0; }
  .books-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .final-cta__box { padding: 40px 24px; }
}
