/*
  Sheryl's Book Corner
  Website Redesign By Rooted.com
*/

/* =============================================
   VARIABLES
   ============================================= */
:root {
  --cream:       #FAF8F2;
  --beige:       #EDE8DC;
  --beige-mid:   #DDD5C4;
  --navy:        #1E3A5F;
  --navy-deep:   #0F2240;
  --gold:        #B8861A;
  --gold-mid:    #D4A030;
  --gold-light:  #F5E7C0;
  --sky:         #5B8FA8;
  --sky-light:   #D6EAF4;
  --sky-pale:    #EEF7FC;
  --text:        #2A2326;
  --text-muted:  #6B6066;
  --border:      #DDD5C8;
  --white:       #FFFFFF;
  --star:        #E8A020;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-quote:   'Lora', Georgia, serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 2px 8px rgba(30,58,95,0.08);
  --shadow-md:  0 8px 28px rgba(30,58,95,0.12);
  --shadow-lg:  0 20px 56px rgba(30,58,95,0.16);

  --transition: 0.2s ease;
  --container:  1160px;
  --container-narrow: 800px;
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem,   5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section        { padding: 5.5rem 0; }
.section--sm    { padding: 3rem 0; }
.section--beige { background-color: var(--beige); }
.section--navy  { background-color: var(--navy); }
.section--sky   { background-color: var(--sky-pale); }

.text-center  { text-align: center; }
.text-muted   { color: var(--text-muted); }
.text-navy    { color: var(--navy); }
.text-white   { color: var(--white); }

.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.two-column-layout--wide { gap: 4rem; }
.two-column-layout--page { gap: 3.5rem; }
.two-column-layout--compact { gap: 1.25rem; }

.reviews-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  border-radius: 50px;
  transition: all var(--transition);
  text-align: center;
  cursor: pointer;
  line-height: 1;
}
.btn--primary {
  background-color: var(--navy);
  color: var(--white);
}
.btn--primary:hover {
  background-color: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30,58,95,0.28);
}
.btn--gold {
  background-color: var(--gold);
  color: var(--white);
}
.btn--gold:hover {
  background-color: #9e7214;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,134,26,0.32);
}
.btn--outline {
  background-color: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover {
  background-color: var(--navy);
  color: var(--white);
}
.btn--outline-white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
}
.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn--sm { padding: 0.6rem 1.4rem; font-size: 0.82rem; }

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
  line-height: 1.2;
}
.site-logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.site-nav a {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--navy);
  font-weight: 600;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  z-index: 300;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding: 5rem 0 4.5rem;
  background-color: var(--cream);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: center;
}
.hero-book-wrap {
  position: relative;
}
.hero-book-img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-content { padding-right: 1.5rem; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.7rem;
  display: block;
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.08;
  margin-bottom: 1rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 480px;
}
.star-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.stars {
  color: var(--star);
  font-size: 1.05rem;
  letter-spacing: 1px;
}
.star-label {
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 500;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.price-main {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.price-was {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-badge {
  background-color: var(--gold-light);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}
.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.hero-note strong { color: var(--navy); }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background-color: var(--sky-light);
  border-top: 1px solid rgba(91,143,168,0.2);
  border-bottom: 1px solid rgba(91,143,168,0.2);
  padding: 0.9rem 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--navy);
}
.trust-bar strong { font-weight: 700; }

/* =============================================
   VERSE STRIP
   ============================================= */
.verse-strip {
  background-color: var(--navy);
  padding: 4.5rem 0;
  text-align: center;
}
.verse-text {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 1rem;
}
.verse-ref {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

/* =============================================
   TWO-COLUMN GRID
   ============================================= */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-grid--reverse .split-left { order: 2; }
.split-grid--reverse .split-right { order: 1; }

/* =============================================
   STORY SECTION
   ============================================= */
.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.story-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
}
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.7rem;
}
.divider {
  width: 44px;
  height: 3px;
  background-color: var(--gold);
  border-radius: 2px;
  margin: 1.25rem 0;
}
.divider--center { margin-left: auto; margin-right: auto; }

.prose p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.prose p:last-child { margin-bottom: 0; }

/* =============================================
   BOOK PREVIEW
   ============================================= */
.book-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3.5rem;
  align-items: start;
}
.book-cover img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.book-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1.5rem 0;
}
.book-meta-item {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
}
.book-meta-item .meta-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.book-meta-item .meta-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}

/* =============================================
   AUDIENCE CARDS
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card h4 {
  margin-bottom: 0.5rem;
}
.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   REVIEW CARDS
   ============================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.review-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}
.review-stars {
  color: var(--star);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.review-quote {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.review-byline {
  font-size: 0.82rem;
}
.review-name  { font-weight: 700; color: var(--navy); display: block; }
.review-role  { color: var(--text-muted); display: block; margin-top: 1px; }

/* =============================================
   AMAZON RATING BADGE
   ============================================= */
.amazon-summary {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background-color: var(--gold-light);
  border: 1px solid rgba(184,134,26,0.2);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2rem;
}
.amazon-score {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.amazon-stars { color: var(--star); font-size: 1.1rem; letter-spacing: 2px; }
.amazon-detail { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* =============================================
   AUTHOR PREVIEW
   ============================================= */
.author-panel {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.author-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* =============================================
   BULK ORDER CTA
   ============================================= */
.bulk-bar {
  background-color: var(--sky-pale);
  border-top: 1px solid rgba(91,143,168,0.2);
  border-bottom: 1px solid rgba(91,143,168,0.2);
  padding: 3.5rem 0;
}
.bulk-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}
.bulk-bar-text h3 { margin-bottom: 0.5rem; }
.bulk-bar-text p {
  font-size: 0.93rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0;
}

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
  background-color: var(--navy);
  padding: 5.5rem 0;
  text-align: center;
}
.final-cta h2 { color: var(--white); margin-bottom: 1rem; }
.final-cta .sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.ship-note {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background-color: var(--navy-deep);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.footer-tagline {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin: 0;
}
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact-line {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.58);
  margin-bottom: 0.4rem;
  display: block;
}
a.footer-contact-line {
  text-decoration: none;
  transition: color 0.2s;
}
a.footer-contact-line:hover {
  color: rgba(255,255,255,0.9);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-attr { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-attr a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-attr a:hover { color: var(--white); }

/* =============================================
   PAGE HERO (INNER PAGES)
   ============================================= */
.page-hero {
  background-color: var(--navy);
  padding: 4rem 0 3.5rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.8rem; }
.page-hero .sub {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.28); }
.breadcrumb-current { color: rgba(255,255,255,0.82); }

/* =============================================
   ORDER BOX
   ============================================= */
.order-box {
  background-color: var(--beige);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.order-box-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.5rem;
}
.order-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}
.order-price { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; color: var(--navy); }
.order-was   { font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; }
.order-save  {
  background-color: var(--gold-light);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.22rem 0.65rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.order-meta {
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.order-meta-line {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.4rem;
}
.order-meta-line strong { color: var(--navy); }
.order-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.order-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; text-align: center; }

/* =============================================
   FAITH / BIBLE VERSE BLOCK
   ============================================= */
.verse-block {
  background-color: var(--navy);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
}
.verse-block .verse-text {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.verse-block .verse-ref { color: var(--gold-mid); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* =============================================
   FAQ
   ============================================= */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 1.2rem 0;
  font-family: var(--font-heading);
  font-size: 1.03rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}
.faq-toggle {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--sky);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-body {
  display: none;
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}
.faq-item.open .faq-body { display: block; }

/* =============================================
   FORMS
   ============================================= */
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.38rem;
}
.form-label .req { color: #b94040; }
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.93rem;
  color: var(--text);
  background-color: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(91,143,168,0.14);
}
.form-input::placeholder { color: #b8b0b0; }
textarea.form-input { resize: vertical; min-height: 120px; }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6066' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.35rem; }

/* =============================================
   CONTACT SPECIFICS
   ============================================= */
.contact-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
}
.contact-card h3 { margin-bottom: 0.5rem; }
.contact-card .sub { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 0.65rem; margin: 1.5rem 0; }
.contact-info-item { display: flex; gap: 0.6rem; font-size: 0.9rem; color: var(--text-muted); }
.contact-info-item strong { color: var(--navy); min-width: 64px; display: inline-block; }
.bulk-highlight {
  background-color: var(--gold-light);
  border: 1px solid rgba(184,134,26,0.25);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  margin-bottom: 2rem;
}
.bulk-highlight h3 { color: var(--navy); margin-bottom: 0.5rem; }
.bulk-highlight p { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* =============================================
   ORDER NOTIFICATION MODAL
   ============================================= */
.order-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(15,34,64,0.55);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.order-modal-overlay.open { display: flex; }
.order-modal {
  background-color: var(--cream);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.order-modal h3 { margin-bottom: 0.5rem; }
.order-modal p  { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  padding: 0.25rem;
}
.modal-email-link {
  display: block;
  background-color: var(--beige);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-size: 0.93rem;
  color: var(--navy);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.75rem;
  transition: background-color var(--transition);
}
.modal-email-link:hover { background-color: var(--beige-mid); }
.modal-or { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin: 0.75rem 0; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cards-grid   { grid-template-columns: repeat(2, 1fr); }
  .author-panel { grid-template-columns: 200px 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .header-inner { gap: 1rem; }
  .site-logo { max-width: calc(100% - 56px); }

  .site-nav {
    display: none;
    position: fixed;
    inset: 0;
    background-color: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 200;
  }
  .site-nav.open { display: flex; }
  .site-nav.open a { font-size: 1.25rem; padding: 0.75rem 1.5rem; }
  .nav-toggle { display: flex; }
  .header-cta-desktop { display: none; }

  .hero { padding: 3rem 0; }
  .hero-inner,
  .split-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-inner { text-align: center; }
  .hero-content { order: -1; padding-right: 0; }
  .hero-book-img { max-width: 280px; }
  .star-row, .price-row, .hero-actions { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }

  .split-grid--reverse .split-left  { order: unset; }
  .split-grid--reverse .split-right { order: unset; }

  .story-img img { height: 280px; }

  .book-panel,
  .author-panel,
  .two-column-layout,
  .reviews-list-grid {
    grid-template-columns: 1fr;
  }
  .book-cover { width: 180px; margin: 0 auto; }
  .author-photo { width: 200px; margin: 0 auto; }

  .reviews-grid,
  .cards-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .bulk-bar-inner { flex-direction: column; text-align: center; }

  .book-meta-grid { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }

  .order-box { padding: 1.75rem; }

  .amazon-summary { flex-direction: column; text-align: center; gap: 1rem; }
}

@media (max-width: 480px) {
  .hero-actions,
  .cta-actions   { flex-direction: column; align-items: center; }
  .btn           { width: 100%; max-width: 320px; }
  .bulk-bar-inner .btn { width: auto; }
  .two-column-layout--wide,
  .two-column-layout--page,
  .two-column-layout--compact { gap: 2rem; }
  .reviews-list-grid { gap: 1rem; }
}
