/* ═══════════════════════════════════════════════════════════
   BrightCrumbs Redesign — Modern Literary Theme
   Art Direction: warm editorial, children's literary, bookshelf warmth
   Palette: parchment cream + forest green + amber gold accent
   Fonts: Boska (display) + Source Serif 4 (editorial) + General Sans (UI)
═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  /* Type scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem;    --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;    --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;   --space-20: 5rem;   --space-24: 6rem;
  --space-32: 8rem;

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Fonts */
  --font-display: 'Boska', 'Georgia', serif;
  --font-editorial: 'Source Serif 4', 'Georgia', serif;
  --font-body: 'General Sans', 'Helvetica Neue', sans-serif;
}

/* Light theme — pure white base + gold as accent only */
:root, [data-theme="light"] {
  --color-bg:             #ffffff;
  --color-surface:        #ffffff;
  --color-surface-2:      #f8f8f8;
  --color-surface-offset: #f2f2f2;
  --color-divider:        #e8e8e8;
  --color-border:         #d8d8d8;

  --color-text:           #1c1710;
  --color-text-muted:     #6b6460;
  --color-text-faint:     #b0aaa4;
  --color-text-inverse:   #ffffff;

  /* Brand gold — used for section backgrounds & highlights only */
  --color-primary:        #f4aa31;
  --color-primary-hover:  #e09620;
  --color-primary-active: #c67f10;
  --color-primary-highlight: #fff8e6;

  /* Dark charcoal — buttons, badges, UI emphasis */
  --color-accent:         #474747;
  --color-accent-hover:   #2e2e2e;
  --color-accent-active:  #1a1a1a;
  --color-accent-highlight: #efefef;

  --color-success: #437a22;
  --color-error:   #a12c2c;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.11);
  --shadow-xl: 0 24px 48px rgba(0,0,0,0.15);
}

/* Dark theme */
[data-theme="dark"] {
  --color-bg:             #18140a;
  --color-surface:        #201a0e;
  --color-surface-2:      #261f12;
  --color-surface-offset: #2a2110;
  --color-divider:        #3a2e18;
  --color-border:         #4a3c20;

  --color-text:           #f0e8d0;
  --color-text-muted:     #b09a6a;
  --color-text-faint:     #6b5535;
  --color-text-inverse:   #1c1710;

  --color-primary:        #f4aa31;
  --color-primary-hover:  #e09620;
  --color-primary-active: #c67f10;
  --color-primary-highlight: #3a2a08;

  --color-accent:         #e8e2d8;
  --color-accent-hover:   #ffffff;
  --color-accent-active:  #c8c0b0;
  --color-accent-highlight: #2a2520;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.5);
  --shadow-xl: 0 24px 48px rgba(0,0,0,0.6);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #151210; --color-surface: #1b1814; --color-surface-2: #201d18;
    --color-surface-offset: #1e1a15; --color-divider: #2d2820; --color-border: #3a342a;
    --color-text: #e8e2d8; --color-text-muted: #8a8275; --color-text-faint: #5a5348;
    --color-text-inverse: #1b1814;
    --color-primary: #f4aa31; --color-primary-hover: #e09620;
    --color-primary-active: #c67f10; --color-primary-highlight: #3a2a08;
    --color-accent: #e8e2d8; --color-accent-hover: #ffffff;
    --color-accent-active: #d07a1a; --color-accent-highlight: #3a2c14;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.2); --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.4); --shadow-xl: 0 24px 48px rgba(0,0,0,0.5);
  }
}

/* ── BASE RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: none; text-size-adjust: none;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; scroll-behavior: smooth;
  scroll-padding-top: var(--space-16);
}
body {
  min-height: 100dvh; line-height: 1.6;
  font-family: var(--font-body); font-size: var(--text-base);
  color: var(--color-text); background-color: var(--color-bg);
}
img, video, canvas { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.2; }
p, li { text-wrap: pretty; }
button { cursor: pointer; background: none; border: none; }

::selection { background: color-mix(in oklab, var(--color-primary) 25%, transparent); }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }

a, button, [role="button"] {
  transition: color var(--transition), background var(--transition),
              border-color var(--transition), box-shadow var(--transition), opacity var(--transition);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-6); border-radius: var(--radius-full);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  text-decoration: none; line-height: 1; white-space: nowrap; cursor: pointer;
  border: 2px solid transparent;
}
.btn-lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); }
.btn-sm { padding: var(--space-2) var(--space-4); font-size: var(--text-xs); }

.btn-primary {
  background: var(--color-primary); color: var(--color-text-inverse);
  border-color: var(--color-primary);
}
.btn-primary:hover { background: var(--color-primary-hover); border-color: var(--color-primary-hover); }

.btn-outline {
  background: transparent; color: var(--color-accent);
  border-color: var(--color-accent);
  border-width: 2px;
}
.btn-outline:hover { background: var(--color-accent); border-color: var(--color-accent); color: #ffffff; }

.btn-ghost {
  background: transparent; color: var(--color-text-muted);
  border-color: var(--color-border); padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}
.btn-ghost:hover { color: var(--color-text); border-color: var(--color-text-muted); }

.btn-accent {
  background: var(--color-accent); color: #fff;
  border-color: var(--color-accent);
}
.btn-accent:hover { background: var(--color-accent-hover); border-color: var(--color-accent-hover); }

/* All primary buttons — charcoal with white text */
.btn-primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff !important;
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

/* ── SECTION UTILITIES ── */
.section-container {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-6);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(var(--space-10), 5vw, var(--space-16));
}
.section-label {
  display: inline-block;
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.section-desc {
  font-family: var(--font-editorial);
  color: var(--color-text-muted); font-size: var(--text-base);
  margin-top: var(--space-4); font-style: italic;
}
.section-header h2 {
  font-family: var(--font-display); font-size: var(--text-2xl);
  font-weight: 700; color: var(--color-text); line-height: 1.15;
}
.text-link {
  color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px;
}
.text-link:hover { color: var(--color-primary-hover); }

/* ═══════════════════════════════════
   HEADER
═══════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in oklab, #faf7f2 94%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  max-width: var(--content-wide); margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex; align-items: center; gap: var(--space-6);
}
.logo { color: var(--color-text); text-decoration: none; flex-shrink: 0; }
.logo svg { display: block; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: var(--space-1); }
.main-nav a {
  font-size: var(--text-sm); font-weight: 500; color: var(--color-text-muted);
  text-decoration: none; padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
}
.main-nav a:hover { color: var(--color-text); background: var(--color-surface-offset); }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }

.cart-btn {
  position: relative; padding: var(--space-2); border-radius: var(--radius-md);
  color: var(--color-text-muted); border: 1px solid var(--color-border);
}
.cart-btn:hover { color: var(--color-text); border-color: var(--color-text-muted); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--color-accent); color: #fff;
  font-size: 10px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

.theme-toggle {
  padding: var(--space-2); border-radius: var(--radius-md);
  color: var(--color-text-muted); border: 1px solid var(--color-border);
}
.theme-toggle:hover { color: var(--color-text); border-color: var(--color-text-muted); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: var(--space-2); border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--color-text); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; overflow: hidden;
  max-height: 0; transition: max-height 0.3s ease;
  border-top: 1px solid var(--color-divider);
  background: var(--color-surface);
}
.mobile-menu.open { max-height: 500px; }
.mobile-menu ul {
  padding: var(--space-4) var(--space-6); display: flex;
  flex-direction: column; gap: var(--space-2);
}
.mobile-link {
  display: block; padding: var(--space-3) var(--space-4);
  font-size: var(--text-base); font-weight: 500;
  color: var(--color-text); text-decoration: none;
  border-radius: var(--radius-md);
}
.mobile-link:hover { background: var(--color-surface-offset); }
.mobile-cta { margin-top: var(--space-2); text-align: center; }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  min-height: clamp(600px, 80vh, 850px);
  display: flex; align-items: center;
  background: var(--color-surface);
}

/* Subtle paper texture background */
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 50%, color-mix(in oklab, var(--color-primary) 6%, transparent) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, color-mix(in oklab, var(--color-accent) 8%, transparent) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, color-mix(in oklab, var(--color-primary) 4%, transparent) 0%, transparent 40%);
}

.hero-content {
  position: relative; z-index: 1;
  max-width: var(--content-wide); margin: 0 auto;
  padding: clamp(var(--space-16), 8vw, var(--space-24)) var(--space-6);
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-12);
  align-items: center;
}

.hero-kicker {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}
.kicker-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-primary); flex-shrink: 0; /* keep gold dot — small accent is fine */
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, var(--text-3xl));
  font-weight: 700; color: var(--color-text);
  line-height: 1.1; margin-bottom: var(--space-6);
}
.hero-headline em {
  font-style: italic; color: var(--color-primary);
}
.hero-headline-sub {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 400; font-style: normal;
  color: var(--color-text-muted);
  letter-spacing: -0.01em;
  margin-top: var(--space-1);
}

.hero-subtext {
  font-family: var(--font-editorial);
  font-size: var(--text-lg); color: var(--color-text-muted);
  max-width: 52ch; margin-bottom: var(--space-8); line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-8); }

.hero-social-proof {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-xs); color: var(--color-text-muted);
}
.star-row { color: var(--color-accent); font-size: var(--text-base); letter-spacing: 1px; }

/* Book illustration area */
.hero-books {
  position: relative; height: 480px;
  display: flex; align-items: flex-end; justify-content: center;
}
.book-float { position: absolute; }
.book-float--back { bottom: 20px; right: 0; transform: rotate(6deg); }
.book-float--front { bottom: 0; left: 0; transform: rotate(-3deg); z-index: 2; }

.book-card { position: relative; }
.book-card--lg .book-cover { width: 220px; height: 290px; }
.book-card--sm .book-cover { width: 160px; height: 210px; }

.book-cover {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: flex; align-items: stretch;
}
.book-cover--1 { background: linear-gradient(145deg, #f9c74f, #f8a73c); }
.book-cover--2 { background: linear-gradient(145deg, #90e0ef, #48cae4); }

.book-cover-inner {
  display: flex; flex-direction: column; align-items: center;
  justify-content: space-between; padding: var(--space-4);
  width: 100%; text-align: center;
}
.book-series-tag {
  background: rgba(255,255,255,0.3); color: rgba(0,0,0,0.7);
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 3px 10px; border-radius: var(--radius-full); align-self: flex-start;
}
.book-char { font-size: 3rem; margin: var(--space-2) 0; }
.book-title-text {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem; color: rgba(0,0,0,0.8); line-height: 1.2;
}
.book-subtitle-text {
  font-size: 0.65rem; color: rgba(0,0,0,0.6);
  font-style: italic; line-height: 1.3; margin-top: var(--space-1);
}

.book-badge {
  position: absolute; bottom: -10px; right: -10px;
  background: var(--color-primary); color: var(--color-text-inverse);
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); gap: 0;
}
.book-badge span { font-size: 0.8rem; font-weight: 700; line-height: 1; }
.book-badge small { font-size: 0.55rem; opacity: 0.8; }

.scroll-indicator {
  position: absolute; bottom: var(--space-8); left: 50%; transform: translateX(-50%);
  color: var(--color-text-faint); text-decoration: none;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ═══════════════════════════════════
   TRUST BAR
═══════════════════════════════════ */
.trust-bar {
  background: var(--color-primary); color: var(--color-text-inverse);
  padding: var(--space-5) var(--space-6);
}
.trust-inner {
  max-width: var(--content-wide); margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: var(--space-6);
}
.trust-item {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm); font-weight: 500; opacity: 0.95;
}
.trust-divider {
  width: 1px; height: 20px;
  background: rgba(28,23,16,0.2);
}

/* ═══════════════════════════════════
   BOOKS SECTION
═══════════════════════════════════ */
.books-section { background: var(--color-bg); }

.books-grid {
  display: flex; flex-direction: column;
  gap: clamp(var(--space-12), 6vw, var(--space-20));
}

.book-feature-card {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: var(--space-12);
  align-items: center;
  padding: var(--space-10) var(--space-10);
  background: var(--color-surface); border-radius: var(--radius-xl);
  border: 1px solid var(--color-divider);
  box-shadow: var(--shadow-sm);
}
.book-feature-card--reverse { grid-template-columns: 1.6fr 1fr; }
.book-feature-card--reverse .book-feature-visual { order: 2; }
.book-feature-card--reverse .book-feature-info { order: 1; }

.book-cover-display {
  border-radius: var(--radius-lg); padding: var(--space-8);
  display: flex; flex-direction: column; align-items: center;
  justify-content: space-between; text-align: center;
  min-height: 280px; box-shadow: var(--shadow-lg);
}
.book-cover-display--amber { background: linear-gradient(145deg, #ffd166, #f4a12a); }
.book-cover-display--sky   { background: linear-gradient(145deg, #a8dadc, #4ecdc4); }
.book-cover-display--forest { background: linear-gradient(145deg, #74c69d, #40916c); }

.bcd-series {
  background: rgba(255,255,255,0.35); color: rgba(0,0,0,0.65);
  font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 4px 12px; border-radius: var(--radius-full);
  align-self: flex-start;
}
.bcd-character { font-size: 3.5rem; margin: var(--space-3) 0; }
.bcd-title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: rgba(0,0,0,0.8); line-height: 1.2;
}
.bcd-byline {
  font-size: var(--text-xs); color: rgba(0,0,0,0.6); font-style: italic; margin-top: var(--space-1);
}
.book-pub-date {
  text-align: center; margin-top: var(--space-3);
  font-size: var(--text-xs); color: var(--color-text-faint);
}

.book-meta-row { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-4); }
.book-tag {
  background: var(--color-surface-offset); color: var(--color-text-muted);
  font-size: var(--text-xs); font-weight: 600; padding: 3px 10px;
  border-radius: var(--radius-full); border: 1px solid var(--color-border);
}

.book-feature-info h3 {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: 700; color: var(--color-text);
  margin-bottom: var(--space-4);
}
.book-feature-info p {
  font-family: var(--font-editorial); color: var(--color-text-muted);
  line-height: 1.7; margin-bottom: var(--space-4); max-width: 55ch;
}
.book-lesson {
  background: var(--color-primary-highlight);
  border-left: 3px solid var(--color-primary);
  padding: var(--space-3) var(--space-5);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-body) !important;
  font-size: var(--text-sm) !important;
  color: var(--color-text) !important;
  margin-bottom: var(--space-6) !important;
}

.book-price-row { display: flex; align-items: center; gap: var(--space-6); flex-wrap: wrap; }
.book-price { display: flex; flex-direction: column; gap: 2px; }
.price-amount {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: 700; color: var(--color-text);
}
.price-note { font-size: var(--text-xs); color: var(--color-text-muted); }
.book-ctas { display: flex; flex-wrap: wrap; gap: var(--space-2); }

/* Bundle CTA */
.bundle-cta-block {
  margin-top: clamp(var(--space-10), 5vw, var(--space-16));
}
.bundle-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-8); flex-wrap: wrap;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  color: var(--color-text-inverse); border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 4vw, var(--space-12)) clamp(var(--space-8), 5vw, var(--space-16));
}
.bundle-text h3 {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: 700; margin-bottom: var(--space-2);
}
.bundle-text p {
  font-family: var(--font-editorial); opacity: 0.85; font-size: var(--text-base); max-width: 50ch;
}
.bundle-cta-inner .btn-primary {
  background: #fff7cc; border-color: #fff7cc; color: #1c1710 !important;
  flex-shrink: 0; font-weight: 700;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.bundle-cta-inner .btn-primary:hover {
  background: #ffee99; border-color: #ffee99;
  box-shadow: 0 4px 18px rgba(0,0,0,0.16);
}

/* ═══════════════════════════════════
   WHY SECTION
═══════════════════════════════════ */
.why-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16);
  align-items: start;
}
.why-text .section-label { display: block; }
.why-text h2 {
  font-family: var(--font-display); font-size: var(--text-2xl);
  font-weight: 700; color: var(--color-text); margin: var(--space-3) 0 var(--space-6);
}
.why-text p {
  font-family: var(--font-editorial); color: var(--color-text-muted);
  line-height: 1.75; max-width: 52ch; margin-bottom: var(--space-5);
}
.pull-quote {
  border-left: 4px solid var(--color-primary); /* gold stripe — intentional accent */
  padding: var(--space-4) var(--space-6);
  margin: var(--space-8) 0;
  background: var(--color-primary-highlight);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.pull-quote p {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: 500; font-style: italic; color: var(--color-text);
  margin: 0; max-width: none;
}

.why-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.pillar-card {
  background: var(--color-surface-2); border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg); padding: var(--space-6);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pillar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pillar-icon { font-size: 1.75rem; margin-bottom: var(--space-3); }
.pillar-card h4 {
  font-family: var(--font-display); font-size: var(--text-lg);
  font-weight: 700; color: var(--color-text); margin-bottom: var(--space-2);
}
.pillar-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.65; }

/* ═══════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════ */
.about-section { background: var(--color-bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--space-16);
  align-items: center;
}

.author-portrait-frame {
  background: var(--color-surface); border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.author-portrait-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--space-4); color: var(--color-text-muted); text-align: center; padding: var(--space-6);
}
.author-portrait-placeholder span { font-size: var(--text-sm); font-style: italic; }

.author-credential-card {
  background: var(--color-surface); border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg); padding: var(--space-4) var(--space-5);
  display: flex; align-items: center; gap: var(--space-3);
  margin-top: var(--space-4); box-shadow: var(--shadow-sm);
}
.cred-icon { font-size: 1.5rem; }
.author-credential-card strong { display: block; font-size: var(--text-sm); color: var(--color-text); }
.author-credential-card p { font-size: var(--text-xs); color: var(--color-text-muted); margin: 0; }

.about-text .section-label { display: block; }
.about-text h2 {
  font-family: var(--font-display); font-size: var(--text-2xl);
  font-weight: 700; margin: var(--space-3) 0 var(--space-6);
}
.about-text p {
  font-family: var(--font-editorial); color: var(--color-text-muted);
  line-height: 1.75; max-width: 55ch; margin-bottom: var(--space-5);
}

.about-stats {
  display: flex; align-items: center; gap: var(--space-6);
  padding: var(--space-6) 0; margin: var(--space-4) 0 var(--space-6);
  border-top: 1px solid var(--color-divider); border-bottom: 1px solid var(--color-divider);
}
.stat-item { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.stat-number {
  display: block; font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: 700; color: var(--color-primary); line-height: 1.2;
}
.stat-label { font-size: var(--text-xs); color: var(--color-text-muted); white-space: nowrap; line-height: 1.4; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--color-divider); }

/* ═══════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════ */
.testimonials-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5); align-items: stretch;
}

.testimonial-card {
  background: var(--color-surface-2); border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg); padding: var(--space-7);
  display: flex; flex-direction: column; gap: var(--space-5);
  overflow: hidden; /* prevent any bleed */
  box-sizing: border-box;
}
.testimonial-card blockquote {
  flex: 1; /* pushes author to bottom */
  overflow: hidden;
}
.testimonial-card--featured {
  background: var(--color-surface-2);
  border-color: var(--color-divider);
  border-width: 1px;
  color: var(--color-text);
  box-shadow: var(--shadow-md);
}
.testimonial-card--featured blockquote p,
.testimonial-card--featured .testimonial-author strong {
  color: var(--color-text);
}
.testimonial-stars { color: var(--color-primary); font-size: var(--text-base); letter-spacing: 2px; } /* stars stay gold — universal convention */
.testimonial-card--featured .testimonial-stars { color: var(--color-primary); }
.testimonial-card blockquote p {
  font-family: var(--font-editorial); font-size: var(--text-base);
  line-height: 1.75; font-style: italic; color: inherit;
  max-width: none; margin: 0;
  word-break: break-word; overflow-wrap: break-word;
}
.testimonial-card--featured blockquote p { opacity: 0.9; }
.testimonial-author {
  display: flex; align-items: center; gap: var(--space-3);
  margin-top: auto; flex-shrink: 0;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-divider);
}
.testimonial-card--featured .testimonial-author {
  border-top-color: var(--color-divider);
}
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-primary); color: #1c1710;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs); font-weight: 700; flex-shrink: 0;
}
.testimonial-card--featured .testimonial-avatar {
  background: var(--color-primary); color: #1c1710;
}
.testimonial-author strong { display: block; font-size: var(--text-sm); }
.testimonial-author span { font-size: var(--text-xs); color: var(--color-text-muted); }
.testimonial-card--featured .testimonial-author span { color: var(--color-text-muted); }

/* ═══════════════════════════════════
   HOW IT WORKS / STEPS
═══════════════════════════════════ */
.steps-section { background: var(--color-bg); }
.steps-row {
  display: flex; align-items: center; gap: var(--space-4);
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}
.step-card {
  flex: 1; background: var(--color-surface);
  border: 1px solid var(--color-divider); border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6); text-align: center;
}
.step-number {
  font-family: var(--font-display); font-size: 3rem; font-weight: 700;
  color: var(--color-primary-highlight); line-height: 1;
  margin-bottom: var(--space-4);
  -webkit-text-stroke: 2px var(--color-primary);
  paint-order: stroke fill;
}
.step-card h3 {
  font-family: var(--font-display); font-size: var(--text-lg);
  font-weight: 700; color: var(--color-text); margin-bottom: var(--space-3);
}
.step-card p {
  font-family: var(--font-editorial); font-size: var(--text-sm);
  color: var(--color-text-muted); line-height: 1.65; max-width: 30ch; margin: 0 auto;
}
.step-connector {
  font-size: 1.5rem; color: var(--color-accent); flex-shrink: 0; font-weight: 700;
}
.steps-cta { text-align: center; }

/* ═══════════════════════════════════
   SHOP
═══════════════════════════════════ */
.shop-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
}

/* Category tabs */
.shop-tabs {
  display: flex; gap: var(--space-2); margin-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-divider); padding-bottom: var(--space-1);
}
.shop-tab {
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm); font-weight: 600;
  color: var(--color-text-muted); border-radius: var(--radius-md) var(--radius-md) 0 0;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  cursor: pointer; transition: color var(--transition), border-color var(--transition);
}
.shop-tab--active {
  color: var(--color-primary); border-bottom-color: var(--color-primary);
}
.shop-tab:hover { color: var(--color-text); }

.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }

.product-card {
  background: var(--color-surface-2); border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.product-card--featured { border-color: var(--color-accent); }

.product-image {
  height: 180px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.product-image--amber { background: linear-gradient(145deg, #ffd166, #f4a12a); }
.product-image--sky   { background: linear-gradient(145deg, #a8dadc, #4ecdc4); }
.product-image--forest { background: linear-gradient(145deg, #74c69d, #40916c); }

.product-char { font-size: 3rem; }
.product-badge-new {
  position: absolute; top: var(--space-3); right: var(--space-3);
  background: var(--color-primary); color: var(--color-text-inverse);
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 8px; border-radius: var(--radius-full);
}
.product-card--featured .product-badge-new { background: var(--color-accent); }

.product-info { padding: var(--space-5); }
.product-info h3 {
  font-family: var(--font-display); font-size: var(--text-lg);
  font-weight: 700; color: var(--color-text); margin-bottom: var(--space-2);
}
.product-info p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6; margin-bottom: var(--space-4); }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: 700; color: var(--color-text);
}

.shop-amazon-row {
  display: flex; align-items: center; gap: var(--space-2);
  margin-top: var(--space-8); padding: var(--space-4) var(--space-5);
  background: var(--color-surface-offset); border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider);
  font-size: var(--text-sm); color: var(--color-text-muted);
}

/* ═══════════════════════════════════
   BLOG
═══════════════════════════════════ */
.blog-section { background: var(--color-bg); }
.section-header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--space-6); flex-wrap: wrap;
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-12));
}
.section-header-row h2 {
  font-family: var(--font-display); font-size: var(--text-2xl);
  font-weight: 700; color: var(--color-text); line-height: 1.15;
}

.blog-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: var(--space-6);
}
.blog-card {
  background: var(--color-surface); border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.blog-card-image {
  height: 180px; position: relative;
  display: flex; align-items: flex-end; padding: var(--space-4);
}
.blog-card--featured .blog-card-image { height: 240px; }
.blog-card-image--1 { background: linear-gradient(145deg, #c8e8f0, #8ecfe0); } /* sky blue — book bottom half */
.blog-card-image--2 { background: linear-gradient(145deg, #fdf0d0, #f4d07a); } /* warm gold — Colby Jack title */
.blog-card-image--3 { background: linear-gradient(145deg, #d6eee8, #a8d5c2); } /* mint sage — book top half */

.blog-category-tag {
  background: rgba(255,255,255,0.9); color: var(--color-text);
  font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 4px 10px; border-radius: var(--radius-full);
}
.blog-card-body { padding: var(--space-5); }
.blog-meta {
  font-size: var(--text-xs); color: var(--color-text-faint);
  margin-bottom: var(--space-2);
}
.blog-card-body h3 {
  font-family: var(--font-display); font-size: var(--text-lg);
  font-weight: 700; color: var(--color-text); margin-bottom: var(--space-3); line-height: 1.3;
}
.blog-card-body p {
  font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.65;
  margin-bottom: var(--space-4); max-width: none;
}
.blog-read-link {
  font-size: var(--text-sm); font-weight: 600; color: var(--color-primary);
  text-decoration: none;
}
.blog-read-link:hover { color: var(--color-primary-hover); text-decoration: underline; }

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
.faq-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
}
.faq-grid {
  display: grid; grid-template-columns: 1fr 2fr; gap: var(--space-16);
  align-items: start;
}
.faq-intro .section-label { display: block; }
.faq-intro h2 {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: 700; color: var(--color-text); margin: var(--space-3) 0 var(--space-4);
}
.faq-intro p { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-6); }

.faq-list { display: flex; flex-direction: column; gap: var(--space-2); }
.faq-item {
  background: var(--color-surface-2); border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg); overflow: hidden;
}
.faq-item summary {
  padding: var(--space-5) var(--space-6); cursor: pointer;
  font-weight: 600; color: var(--color-text); font-size: var(--text-base);
  list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.25rem; color: var(--color-primary);
  transition: transform var(--transition); flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--color-primary); }
.faq-item p {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7;
}

/* ═══════════════════════════════════
   EMAIL CTA
═══════════════════════════════════ */
.cta-section {
  background: var(--color-text);
  padding: clamp(var(--space-16), 8vw, var(--space-32)) var(--space-6);
}
.cta-inner {
  max-width: 720px; margin: 0 auto; text-align: center;
}
.section-label--light { color: #ffffff; opacity: 0.75; }
.cta-inner h2 {
  font-family: var(--font-display); font-size: var(--text-2xl);
  font-weight: 700; color: var(--color-text-inverse);
  margin: var(--space-3) 0 var(--space-5);
}
.cta-inner p {
  font-family: var(--font-editorial); color: rgba(255,255,255,0.65);
  font-size: var(--text-base); line-height: 1.75; max-width: 55ch; margin: 0 auto var(--space-8);
}

.email-form { max-width: 480px; margin: 0 auto; }
.email-form-row {
  display: flex; gap: var(--space-2); margin-bottom: var(--space-3);
}
.email-form input {
  flex: 1; padding: var(--space-3) var(--space-5);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full); color: var(--color-text-inverse);
  font-size: var(--text-sm);
}
.email-form input::placeholder { color: rgba(255,255,255,0.4); }
.email-form input:focus { outline: none; border-color: var(--color-accent); background: rgba(255,255,255,0.15); }
.form-note { font-size: var(--text-xs); color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.site-footer {
  background: var(--color-surface-offset);
  border-top: 1px solid var(--color-divider);
}
.footer-inner {
  max-width: var(--content-wide); margin: 0 auto;
  padding: clamp(var(--space-12), 6vw, var(--space-20)) var(--space-6);
  display: grid; grid-template-columns: 1.5fr 2fr; gap: var(--space-12);
}
.footer-tagline {
  font-family: var(--font-editorial); font-style: italic;
  font-size: var(--text-sm); color: var(--color-text-muted); margin-top: var(--space-3);
}
.footer-social {
  display: flex; gap: var(--space-3); margin-top: var(--space-5);
}
.social-link {
  color: var(--color-text-muted); padding: var(--space-2);
  border: 1px solid var(--color-border); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  transition: color var(--transition), border-color var(--transition);
}
.social-link:hover { color: var(--color-text); border-color: var(--color-text-muted); }

.footer-nav { display: flex; gap: var(--space-12); }
.footer-nav-col h4 {
  font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--color-text); margin-bottom: var(--space-4);
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-nav-col a {
  font-size: var(--text-sm); color: var(--color-text-muted); text-decoration: none;
}
.footer-nav-col a:hover { color: var(--color-text); }

.footer-bottom {
  max-width: var(--content-wide); margin: 0 auto;
  padding: var(--space-6) var(--space-6);
  border-top: 1px solid var(--color-divider);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3);
  font-size: var(--text-xs); color: var(--color-text-faint);
}

/* ═══════════════════════════════════
   FLOATING CTA (MOBILE)
═══════════════════════════════════ */
.floating-cta {
  display: none; position: fixed; bottom: var(--space-5); left: 50%; transform: translateX(-50%);
  z-index: 90; pointer-events: all;
}
.floating-cta .btn { box-shadow: var(--shadow-lg); }

/* ═══════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: var(--space-8); }
  .hero-books { height: 300px; margin: 0 auto; }
  .book-float--back { right: 0; }
  .book-float--front { left: 40px; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card--featured { grid-column: 1 / -1; }

  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card--featured { grid-column: 1 / -1; }

  .why-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .about-visual { max-width: 380px; }
  .faq-grid { grid-template-columns: 1fr; gap: var(--space-6); }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { flex-wrap: wrap; gap: var(--space-8); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .header-actions .btn-primary { display: none; }

  .hero-content { text-align: center; }
  .hero-kicker { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-books { height: 250px; }
  .book-card--lg .book-cover { width: 160px; height: 210px; }
  .book-card--sm .book-cover { width: 120px; height: 160px; }

  .trust-inner { flex-direction: column; gap: var(--space-4); }
  .trust-divider { display: none; }

  .book-feature-card { grid-template-columns: 1fr; padding: var(--space-6); }
  .book-feature-card--reverse { grid-template-columns: 1fr; }
  .book-feature-card--reverse .book-feature-visual { order: 0; }
  .book-feature-card--reverse .book-feature-info { order: 1; }
  .book-price-row { flex-direction: column; align-items: flex-start; gap: var(--space-4); }

  .bundle-cta-inner { flex-direction: column; text-align: center; }
  .bundle-cta-inner .btn { align-self: center; }

  .why-pillars { grid-template-columns: 1fr; }

  .shop-grid { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .steps-row { flex-direction: column; }
  .step-connector { transform: rotate(90deg); }

  .blog-grid { grid-template-columns: 1fr; }

  .email-form-row { flex-direction: column; }

  .footer-bottom { flex-direction: column; }

  .floating-cta { display: flex; }
}

@media (max-width: 480px) {
  .section-container { padding-left: var(--space-4); padding-right: var(--space-4); }
  .hero-books { display: none; }
  .hero-content { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════
   REAL IMAGE ASSETS
═══════════════════════════════════ */

/* Logo with real image */
.logo-img {
  display: flex; align-items: center; gap: var(--space-2);
  text-decoration: none; color: var(--color-text);
}
.logo-image {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  object-fit: cover; flex-shrink: 0;
}
.logo-wordmark {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 700; color: var(--color-text);
  letter-spacing: -0.02em;
}
.footer-logo .logo-image { width: 32px; height: 32px; }

/* Hero book cover images */
.book-cover-img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: var(--radius-lg);
  display: block;
}
.book-card--lg { width: 260px; height: 340px; position: relative; }
.book-card--sm { width: 190px; height: 250px; }
.book-card--lg .book-cover-img,
.book-card--sm .book-cover-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* Book feature section — real photo */
.book-cover-display--photo {
  background: var(--color-surface-offset);
  padding: 0; overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 320px;
}
.bcd-photo {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border-radius: var(--radius-lg);
}

/* Shop product images */
.product-image--photo,
.product-image--both {
  background: var(--color-surface-offset);
  overflow: hidden; padding: 0;
}
.product-cover-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
/* Two-book "both" card */
.product-image--both {
  display: flex; gap: 4px;
}
.product-cover-img--left,
.product-cover-img--right {
  width: 50%; height: 100%; object-fit: cover;
}
.product-cover-img--left { border-radius: 0; }
.product-cover-img--right { border-radius: 0; }

/* Author portrait — real photo */
.author-portrait-real {
  width: 100%; height: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.author-portrait-real img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}

/* ═══════════════════════ WHAT'S INSIDE ACCORDION ═══════════════════════ */
.whats-inside {
  margin: 0.75rem 0 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-surface);
}

.whats-inside summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.9rem;
  font-size: 0.8rem;
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 0.5rem;
}

.whats-inside summary::-webkit-details-marker { display: none; }

.whats-inside summary::after {
  content: '+';
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-left: auto;
  transition: transform 0.2s ease;
}

.whats-inside[open] summary::after {
  transform: rotate(45deg);
}

.inside-count {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-border);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
}

.inside-list {
  list-style: none;
  margin: 0;
  padding: 0 0.9rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.inside-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0.6rem;
  background: var(--color-bg);
  border-radius: 8px;
}

.inside-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.inside-list li div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.inside-list li strong {
  font-size: 0.78rem;
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

.inside-list li span {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Dark mode */
[data-theme="dark"] .whats-inside {
  border-color: var(--color-border);
  background: var(--color-surface);
}

[data-theme="dark"] .inside-list li {
  background: rgba(255,255,255,0.04);
}

/* ═══════════════════════ SHOP EMOTIONAL HEADER ═══════════════════════ */
.shop-header {
  max-width: 680px;
  margin: 0 auto var(--space-12);
  text-align: center;
}

.shop-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: var(--space-5);
}

.shop-header-lead {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-3);
}

.shop-header-sub {
  font-size: 1rem;
  color: var(--color-text);
  font-family: var(--font-display);
  font-style: italic;
}

/* Product hook line */
.product-hook {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* Price block with sub-note */
.product-price-block {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.product-price-note {
  font-size: 0.68rem;
  font-family: var(--font-ui);
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════
   FEATURED / TRUSTED BY BAR
   ═══════════════════════════════════ */
.featured-bar {
  background: var(--color-surface-offset, #f8f8f8);
  border-bottom: 1px solid var(--color-divider);
  padding: var(--space-4) var(--space-6);
}
.featured-inner {
  max-width: var(--content-wide); margin: 0 auto;
  display: flex; align-items: center; gap: var(--space-6);
  flex-wrap: wrap; justify-content: center;
}
.featured-label {
  font-family: var(--font-ui); font-size: var(--text-xs);
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-text-muted); white-space: nowrap; flex-shrink: 0;
}
.featured-logos {
  display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap;
  justify-content: center;
}
.featured-logo-item {
  font-family: var(--font-ui); font-size: var(--text-sm);
  color: var(--color-text); font-weight: 500;
  white-space: nowrap;
}
.featured-divider {
  width: 1px; height: 16px;
  background: var(--color-divider); flex-shrink: 0;
}

/* ═══════════════════════════════════
   HERO BOOKS LABEL
   ═══════════════════════════════════ */
.hero-books-label {
  position: absolute; bottom: -28px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-ui); font-size: var(--text-xs);
  color: var(--color-text-muted); font-weight: 500;
  white-space: nowrap; letter-spacing: 0.04em;
}

/* ═══════════════════════════════════
   TESTIMONIALS — 6-CARD 3×2 GRID
   ═══════════════════════════════════ */
/* The featured card spans full width of first row on desktop */
.testimonial-card--featured {
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  /* First row: featured card takes col 1, two regular cards share remaining */
  .testimonials-grid .testimonial-card:nth-child(1) { grid-column: 1 / 2; }
  .testimonials-grid .testimonial-card:nth-child(2) { grid-column: 2 / 3; }
  .testimonials-grid .testimonial-card:nth-child(3) { grid-column: 3 / 4; }
  .testimonials-grid .testimonial-card:nth-child(4) { grid-column: 1 / 2; }
  .testimonials-grid .testimonial-card:nth-child(5) { grid-column: 2 / 3; }
  .testimonials-grid .testimonial-card:nth-child(6) { grid-column: 3 / 4; }
  /* Remove the featured full-width span — all 6 cards are equal on desktop */
  .testimonial-card--featured { grid-column: auto; }
}

/* ═══════════════════════════════════
   MOBILE IMPROVEMENTS
   ═══════════════════════════════════ */
@media (max-width: 600px) {
  /* Hero books label hidden on mobile */
  .hero-books-label { display: none; }

  /* Featured bar wraps cleanly */
  .featured-inner { gap: var(--space-3); }
  .featured-label { width: 100%; text-align: center; }
  .featured-divider { display: none; }
  .featured-logos { gap: var(--space-3); }

  /* Hero headline tighter on small screens */
  .hero-headline { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero-headline-sub { font-size: clamp(1.2rem, 5vw, 1.6rem); }

  /* Testimonials single column on mobile */
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .testimonial-card--featured,
  .testimonials-grid .testimonial-card { grid-column: auto !important; }

  /* Shop cards stack better */
  .products-grid { grid-template-columns: 1fr !important; }
}

@media (min-width: 601px) and (max-width: 899px) {
  /* Tablet: 2-col testimonials */
  .testimonials-grid { grid-template-columns: 1fr 1fr !important; }
  .testimonial-card--featured { grid-column: 1 / -1 !important; }
  .testimonials-grid .testimonial-card { grid-column: auto; }

  /* Featured bar */
  .featured-label { width: 100%; text-align: center; }
  .featured-divider { display: none; }
}

/* ═══════════════════════ DARK MODE HEADER OVERRIDES ═══════════════════════ */
/* Keep header text/buttons in dark charcoal tones in dark mode */

[data-theme="dark"] .site-header,
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .site-header { background: rgba(250,247,242,0.96); }
}

[data-theme="dark"] .site-header { background: rgba(250,247,242,0.96); }

[data-theme="dark"] .logo,
[data-theme="dark"] .logo-wordmark {
  color: #2c2820;
}

[data-theme="dark"] .main-nav a {
  color: #4a4540;
}

[data-theme="dark"] .main-nav a:hover {
  color: #2c2820;
  background: rgba(28,23,16,0.08);
}

[data-theme="dark"] .cart-btn,
[data-theme="dark"] .theme-toggle,
[data-theme="dark"] .hamburger {
  color: #4a4540;
  border-color: rgba(28,23,16,0.2);
}

[data-theme="dark"] .cart-btn:hover,
[data-theme="dark"] .theme-toggle:hover,
[data-theme="dark"] .hamburger:hover {
  color: #2c2820;
}

[data-theme="dark"] .hamburger span {
  background: #2c2820;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .site-header { background: rgba(250,247,242,0.96); }
  :root:not([data-theme]) .logo,
  :root:not([data-theme]) .logo-wordmark { color: #2c2820; }
  :root:not([data-theme]) .main-nav a { color: #4a4540; }
  :root:not([data-theme]) .main-nav a:hover { color: #2c2820; background: rgba(28,23,16,0.08); }
  :root:not([data-theme]) .cart-btn,
  :root:not([data-theme]) .theme-toggle,
  :root:not([data-theme]) .hamburger { color: #4a4540; border-color: rgba(28,23,16,0.2); }
  :root:not([data-theme]) .cart-btn:hover,
  :root:not([data-theme]) .theme-toggle:hover { color: #2c2820; }
  :root:not([data-theme]) .hamburger span { background: #2c2820; }
}
