/* ═══════════════════════════════════════════
   TOKENS — Saffron & Off-White Palette
═══════════════════════════════════════════ */
:root {
  /* Core palette */
  --saffron:        #e67e00;
  --saffron-deep:   #c96f00;
  --saffron-bright: #ff9a1f;
  --saffron-pale:   #fff3e0;
  --saffron-xpale:  #fffaf3;
  --gold:           #ffb300;
  --gold-pale:      #fff8e1;

  /* Grounding darks */
  --ink:            #1c1005;
  --ink-mid:        #2d1b00;
  --ink-soft:       #3d2a0a;

  /* Greens (secondary) */
  --green:          #2e7d32;
  --green-light:    #43a047;
  --green-pale:     #e8f5e9;

  /* Neutrals */
  --muted:          #7a5c30;
  --subtle:         #a68b5b;
  --border:         #f0d9b5;
  --border-light:   #faecd4;
  --bg:             #ffffff;
  --bg-warm:        #fffdf9;
  --bg-soft:        #fdf8f0;

  /* Radii */
  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(230,126,0,.1);
  --sh:    0 6px 24px rgba(230,126,0,.12);
  --sh-lg: 0 16px 48px rgba(230,126,0,.15);
  --sh-card: 0 2px 12px rgba(0,0,0,.06);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-warm);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; }
select { font-family: inherit; }

/* ═══════════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════════ */
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-sm { padding: 52px 0; }
.section-bg-soft { background: var(--bg-soft); }
.section-bg-pale { background: var(--saffron-xpale); }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--saffron); background: var(--saffron-pale);
  padding: 5px 13px; border-radius: 20px; margin-bottom: 14px;
  border: 1px solid var(--border);
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700; line-height: 1.15; color: var(--ink);
  margin-bottom: 14px;
}
.section-lead {
  font-size: 15.5px; color: var(--muted); line-height: 1.78;
  max-width: 680px;
}
.text-saffron { color: var(--saffron); }
.text-green   { color: var(--green); }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-weight: 600; font-size: 14px; letter-spacing: .02em;
  border-radius: var(--r-sm); padding: 11px 24px;
  transition: all .2s; cursor: pointer; border: none;
  white-space: nowrap;
}
.btn-primary   { background: var(--saffron); color: #fff !important; }
.btn-primary:hover { background: var(--saffron-deep); color: #fff !important; transform: translateY(-1px); box-shadow: var(--sh); }
.btn-secondary { background: var(--green); color: #fff !important; }
.btn-secondary:hover { background: var(--green-light); color: #fff !important; transform: translateY(-1px); }
.btn-outline   { background: transparent; color: var(--saffron) !important; border: 2px solid var(--saffron); }
.btn-outline:hover { background: var(--saffron-pale); color: var(--saffron) !important; }
.btn-ghost     { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-lg        { padding: 14px 32px; font-size: 15px; border-radius: var(--r); }
.btn-sm        { padding: 8px 18px; font-size: 13px; }
.btn-full      { width: 100%; }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 300;
  background: var(--ink-mid);
  border-bottom: 3px solid var(--saffron);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; gap: 12px;
}

/* Logo combo: icon + text */
.nav-logo-combo {
  display: flex; align-items: center; gap: 9px; text-decoration: none; flex-shrink: 0;
}
.nav-logo-icon { height: 36px; width: 36px; object-fit: contain; filter: invert(1); }
.nav-logo-text {
  font-family: 'Fraunces', serif; font-size: 19px; font-weight: 900;
  color: #fff; letter-spacing: -.01em; white-space: nowrap; line-height: 1;
}
.nav-logo-text span { color: var(--saffron-bright); }

/* Footer logo combo */
.footer-logo-combo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-icon { height: 34px; width: 34px; object-fit: contain; filter: invert(1); flex-shrink: 0; }
.footer-logo-text { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 900; color: #fff; }

/* Nav links row */
.nav-links {
  display: flex; align-items: center; gap: 0;
  flex: 1; justify-content: center; position: static;
}
.nav-item { position: relative; list-style: none; }
.nav-item > a {
  font-size: 12.5px; font-weight: 500; letter-spacing: .01em;
  color: rgba(255,255,255,.75); padding: 6px 9px; border-radius: var(--r-sm);
  transition: all .18s; display: flex; align-items: center; gap: 3px;
  white-space: nowrap;
}
.nav-item > a:hover { color: #fff; background: rgba(255,255,255,.1); }
.has-dropdown > a::after {
  content: '▾'; font-size: 9px; opacity: .55; transition: transform .2s; margin-left: 1px;
}
.has-dropdown:hover > a::after { transform: rotate(180deg); }

/* Dropdown panel */
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border-radius: var(--r); min-width: 190px;
  box-shadow: 0 12px 36px rgba(0,0,0,.18); border: 1px solid var(--border-light);
  z-index: 500; overflow: hidden;
}
.has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: 10px 16px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--border-light);
  transition: background .15s; text-decoration: none;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--saffron-pale); color: var(--saffron); }
.nav-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.nav-sign {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.75);
  padding: 6px 16px; border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.25); transition: all .18s;
}
.nav-sign:hover { color: #fff; border-color: rgba(255,255,255,.5); }
.nav-post {
  background: var(--saffron); color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 8px 18px; border-radius: var(--r-sm);
  transition: background .18s;
}
.nav-post:hover { background: var(--saffron-bright); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px; transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile drawer */
.nav-drawer {
  display: none; flex-direction: column; gap: 0;
  background: var(--ink-soft);
  border-top: 1px solid rgba(255,255,255,.08);
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.nav-drawer.open { max-height: 800px; }
/* Mobile drawer sub-section labels */
.nav-drawer-section-title {
  color: rgba(255,255,255,.45); font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 10px 20px 3px; display: block;
}
.nav-drawer-indent { padding-left: 32px !important; }
.nav-drawer a {
  color: rgba(255,255,255,.82); font-size: 14px; font-weight: 500;
  padding: 13px 20px; border-bottom: 1px solid rgba(255,255,255,.06);
  display: block; transition: background .15s;
}
.nav-drawer a:hover { background: rgba(255,255,255,.07); color: #fff; }
.nav-drawer-ctas {
  display: flex; gap: 10px; padding: 16px 20px 20px;
}
.nav-drawer-ctas .btn { flex: 1; justify-content: center; }

/* ═══════════════════════════════════════════
   HERO — Above the fold, no scroll needed
═══════════════════════════════════════════ */
.hero {
  background: var(--ink-mid);
  /* Height = viewport minus nav */
  min-height: calc(100vh - 63px);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
/* Decorative diagonal stripe */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 20% 50%, rgba(230,126,0,.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(255,179,0,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 45%;
  background: repeating-linear-gradient(
    -48deg, transparent, transparent 42px,
    rgba(255,163,0,.04) 42px, rgba(255,163,0,.04) 43px
  );
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 360px;
  gap: 40px; align-items: center;
  width: 100%; max-width: 1180px;
  margin: 0 auto; padding: 40px 20px;
}

/* Left */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(230,126,0,.18); color: var(--gold);
  border: 1px solid rgba(230,126,0,.35);
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.7); }
}
.hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4.2vw, 56px);
  font-weight: 900; line-height: 1.09; color: #fff;
  margin-bottom: 18px;
}
.hero-h1 em { color: var(--saffron-bright); font-style: italic; }
.hero-sub {
  font-size: 15.5px; color: rgba(255,255,255,.65);
  line-height: 1.72; margin-bottom: 30px; max-width: 500px;
}

/* Search bar */
.hero-search {
  background: #fff; border-radius: var(--r);
  padding: 5px; display: flex; gap: 5px; align-items: center;
  box-shadow: 0 8px 36px rgba(0,0,0,.25);
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.hero-search select {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 9px 10px;
  font-size: 12.5px; color: var(--ink); outline: none;
  flex-shrink: 0;
}
.hero-search-loc { width: 148px; }
.hero-search-cat { width: 138px; }
.hero-search input {
  flex: 1; min-width: 120px; border: none; outline: none;
  font-size: 13.5px; color: var(--ink); padding: 9px 6px;
  font-family: 'Outfit', sans-serif; background: transparent;
}
.hero-search input::placeholder { color: #b8a080; }
.hero-search-btn {
  background: var(--saffron); color: #fff; border: none;
  border-radius: var(--r-sm); padding: 10px 22px;
  font-size: 13.5px; font-weight: 700; transition: background .2s;
  flex-shrink: 0;
}
.hero-search-btn:hover { background: var(--saffron-deep); }

.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }

/* Hero stats */
.hero-stats {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
}
.hstat { }
.hstat-n {
  font-family: 'Fraunces', serif; font-size: 26px; font-weight: 700;
  color: #fff; line-height: 1;
}
.hstat-l { font-size: 11px; color: rgba(255,255,255,.48); margin-top: 3px; letter-spacing: .04em; }

/* Right panel */
.hero-panel {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.13);
  border-radius: var(--r-xl); padding: 28px 24px;
  backdrop-filter: blur(10px);
}
.hero-panel-title {
  font-family: 'Fraunces', serif; font-size: 18px; font-weight: 700;
  color: #fff; margin-bottom: 4px;
}
.hero-panel-sub { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.hero-panel-price {
  background: var(--gold-pale); border-radius: var(--r); padding: 18px;
  text-align: center; margin-bottom: 18px;
  border: 1px solid rgba(255,179,0,.25);
}
.hero-panel-price-num {
  font-family: 'Fraunces', serif; font-size: 56px; font-weight: 900;
  color: var(--ink-mid); line-height: 1;
}
.hero-panel-price-num sup { font-size: 22px; vertical-align: super; }
.hero-panel-price-lbl {
  font-size: 11px; font-weight: 700; color: var(--saffron);
  letter-spacing: .07em; text-transform: uppercase; margin-top: 4px;
}
.hero-panel-features {
  list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 10px;
}
.hero-panel-features li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.5;
}
.hero-panel-features li::before {
  content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; margin-top: 1px;
}

/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */
.trust-bar {
  background: var(--saffron-pale);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: flex; align-items: center; justify-content: space-around;
  gap: 8px; padding: 13px 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: var(--ink-soft); font-weight: 500;
  flex-shrink: 0;
}
.trust-icon { font-size: 16px; }

/* ═══════════════════════════════════════════
   ABOUT / INTRO SECTION
═══════════════════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: stretch;
}
.about-body {
  font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 14px;
}
.about-body a { color: var(--saffron); font-weight: 600; }
.about-body a:hover { text-decoration: underline; }
.about-chips { display: flex; flex-wrap: nowrap; gap: 8px; margin-top: 24px; overflow-x: auto; padding-bottom: 4px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--border); color: var(--muted);
  padding: 7px 14px; border-radius: var(--r-sm); font-size: 12.5px; font-weight: 500;
  transition: all .2s; white-space: nowrap; flex-shrink: 0;
}
.chip:hover { border-color: var(--saffron); color: var(--saffron); }

/* Feature cards — 2×2 that stretch to fill the right column height */
.feat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px; height: 100%;
}
.feat-card {
  background: var(--bg); border: 1.5px solid var(--border-light);
  border-radius: var(--r-lg); padding: 22px 18px;
  transition: all .22s; display: flex; flex-direction: column;
}
.feat-card:hover {
  border-color: var(--saffron); transform: translateY(-3px);
  box-shadow: var(--sh);
}
.feat-icon { font-size: 26px; margin-bottom: 10px; }
.feat-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.feat-desc { font-size: 12.5px; color: var(--muted); line-height: 1.6; flex: 1; }

/* ═══════════════════════════════════════════
   CATEGORIES
═══════════════════════════════════════════ */
.cats-header {
  margin-bottom: 28px;
}
.view-all {
  font-size: 13px; font-weight: 700; color: var(--saffron);
  border-bottom: 1.5px solid var(--saffron); padding-bottom: 2px;
  white-space: nowrap; transition: opacity .2s;
}
.view-all:hover { opacity: .65; }
.cats-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
.cat-card {
  background: var(--bg); border: 1.5px solid var(--border-light);
  border-radius: var(--r-lg); padding: 20px 10px; text-align: center;
  color: var(--ink); position: relative; overflow: hidden;
  transition: all .22s;
}
.cat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--saffron);
  transform: scaleX(0); transition: transform .22s;
}
.cat-card:hover {
  border-color: var(--saffron); transform: translateY(-4px);
  box-shadow: var(--sh);
}
.cat-card:hover::after { transform: scaleX(1); }
.cat-emoji { font-size: 24px; margin-bottom: 8px; }
.cat-name { font-size: 12px; font-weight: 600; line-height: 1.3; margin-bottom: 4px; }
.cat-count { font-size: 11px; color: var(--saffron); font-weight: 700; }

/* ═══════════════════════════════════════════
   EARNINGS — New "Start Earning" section
   Split layout: big statement left, 3 benefit pills right
═══════════════════════════════════════════ */
.earn-section { background: var(--ink-mid); overflow: hidden; position: relative; }
.earn-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(230,126,0,.2) 0%, transparent 65%);
  pointer-events: none;
}
.earn-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.earn-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 16px;
}
.earn-title em { color: var(--saffron-bright); font-style: italic; }
.earn-body { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.78; margin-bottom: 28px; }

.pricing-card {
  background: var(--bg);
  border-radius: var(--r-xl); padding: 36px 32px;
  box-shadow: 0 0 0 6px rgba(230,126,0,.15), var(--sh-lg);
  border: 2px solid var(--saffron);
}
.pricing-tag { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--saffron); margin-bottom: 10px; }
.pricing-amount {
  font-family: 'Fraunces', serif; font-size: 72px; font-weight: 900;
  color: var(--ink-mid); line-height: 1;
}
.pricing-amount sup { font-size: 28px; vertical-align: super; }
.pricing-period { color: var(--subtle); font-size: 13px; margin: 6px 0 6px; }
.pricing-headline { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 20px; }
.pricing-tagline { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.65; }
.pricing-perks { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.perk {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--ink); padding: 10px 14px;
  background: var(--saffron-xpale); border-radius: var(--r-sm);
  border-left: 3px solid var(--saffron);
}
.perk::before { content: '✓'; color: var(--saffron); font-weight: 800; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   HOW IT WORKS — Tabbed split layout
═══════════════════════════════════════════ */
.how-section { }
.how-head { text-align: center; max-width: 640px; margin: 0 auto 32px; }

/* Tab switcher */
.how-tabs {
  display: flex; justify-content: center; gap: 0;
  margin: 0 auto 40px; width: fit-content;
  background: var(--saffron-pale); border-radius: var(--r);
  padding: 4px; border: 1.5px solid var(--border);
}
.how-tab {
  padding: 10px 28px; font-size: 13.5px; font-weight: 600;
  border-radius: var(--r-sm); border: none; background: transparent;
  color: var(--muted); transition: all .2s; cursor: pointer;
}
.how-tab.active { background: var(--saffron); color: #fff; box-shadow: var(--sh-sm); }
.how-tab:hover:not(.active) { color: var(--saffron); }

.how-panel { display: none; }
.how-panel.active { display: block; }

/* NEW: Two-column split layout per panel */
.how-panel-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.how-panel-left { }
.how-panel-lead {
  font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 12px;
}
.how-panel-lead a { color: var(--saffron); font-weight: 600; }
.how-panel-right { display: flex; flex-direction: column; gap: 0; }

/* Step cards — vertical with connector */
.how-step-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--bg); border: 1.5px solid var(--border-light);
  border-radius: var(--r-lg); padding: 20px 22px;
  transition: border-color .2s, box-shadow .2s;
}
.how-step-card:hover { border-color: var(--saffron); box-shadow: var(--sh-sm); }
.how-step-num-badge {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--saffron); color: #fff;
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 5px var(--saffron-pale);
}
.how-step-content { flex: 1; }
.how-step-h3 {
  font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px;
  font-family: 'Outfit', sans-serif;
}
.how-step-body { font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.how-step-body a { color: var(--saffron); font-weight: 600; }
.how-step-connector {
  width: 2px; height: 22px; background: var(--border);
  margin: 0 0 0 40px; /* align with badge center */
}

/* donate note */
.how-donate-close {
  background: var(--green-pale); border-radius: var(--r); padding: 14px 18px;
  font-size: 13.5px; color: var(--green); line-height: 1.65;
  border-left: 4px solid var(--green);
}

/* ═══════════════════════════════════════════
   NEW BOOKS SECTION (future feature)
═══════════════════════════════════════════ */
.new-books-section { background: var(--gold-pale); border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold); }
.new-books-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.new-books-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--ink-mid);
  font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 14px;
}
.new-books-body { font-size: 15px; color: var(--muted); line-height: 1.78; margin-bottom: 20px; }
.flex-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.flex-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink);
}
.flex-list li::before { content: '→'; color: var(--saffron); font-weight: 700; flex-shrink: 0; }
.new-books-visual {
  background: linear-gradient(135deg, var(--saffron-pale), var(--gold-pale));
  border-radius: var(--r-xl); padding: 36px;
  text-align: center; border: 2px dashed var(--border);
}
.nb-icon { font-size: 64px; margin-bottom: 14px; }
.nb-label {
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700;
  color: var(--ink-mid); margin-bottom: 8px;
}
.nb-sub { font-size: 13px; color: var(--muted); }

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar { background: var(--saffron); padding: 52px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.stat-block { text-align: center; padding: 0 20px; }
.stat-block + .stat-block { border-left: 1px solid rgba(255,255,255,.25); }
.stat-big {
  font-family: 'Fraunces', serif; font-size: 52px; font-weight: 900;
  color: #fff; line-height: 1;
}
.stat-sub { color: rgba(255,255,255,.78); font-size: 13px; margin-top: 6px; line-height: 1.4; }

/* ═══════════════════════════════════════════
   BLOG
═══════════════════════════════════════════ */
.blog-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 32px; flex-wrap: wrap;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
  background: var(--bg); border: 1.5px solid var(--border-light);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform .22s, box-shadow .22s;
  color: var(--ink);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.blog-img { width: 100%; height: 175px; object-fit: cover; background: var(--saffron-pale); }
.blog-body { padding: 20px; }
.blog-date { font-size: 11px; color: var(--subtle); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.blog-title {
  font-family: 'Fraunces', serif; font-size: 16px; font-weight: 700;
  line-height: 1.4; margin-bottom: 12px;
}
.blog-read {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12.5px; font-weight: 700; color: var(--saffron);
}
.blog-read::after { content: '→'; transition: transform .2s; }
.blog-read:hover::after { transform: translateX(4px); }
.blog-footer { text-align: center; margin-top: 32px; }

/* ═══════════════════════════════════════════
   FAQs — kept from v2 style, updated colors
═══════════════════════════════════════════ */
.faq-wrap { display: grid; grid-template-columns: 1fr 1.9fr; gap: 72px; align-items: start; }
.faq-left-body { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 28px; }
.faq-btn-group { display: flex; flex-direction: column; gap: 10px; }
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--r); overflow: hidden; }
.faq-q {
  width: 100%; background: var(--bg); text-align: left;
  padding: 15px 20px; font-size: 14px; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: background .18s; font-family: 'Outfit', sans-serif; border: none;
}
.faq-q:hover { background: var(--saffron-xpale); }
.faq-q.open { background: var(--saffron); color: #fff; }
.faq-toggle { font-size: 20px; transition: transform .3s; flex-shrink: 0; line-height: 1; }
.faq-q.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
  background: var(--saffron-xpale);
}
.faq-a.open { max-height: 280px; }
.faq-a-in {
  padding: 14px 20px; font-size: 13.5px; color: var(--muted); line-height: 1.75;
}
.faq-a-in a { color: var(--saffron); text-decoration: underline; }

/* ═══════════════════════════════════════════
   LINKS TABLE
═══════════════════════════════════════════ */
.links-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 24px; }
.links-table th {
  background: var(--ink-mid); color: rgba(255,255,255,.85);
  padding: 12px 16px; text-align: left; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
}
.links-table td { padding: 10px 16px; border-bottom: 1px solid var(--border-light); color: var(--ink); }
.links-table tr:hover td { background: var(--saffron-pale); }
.links-table a { color: var(--saffron); font-weight: 500; }
.links-table a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   FOOTER — Saffron background (bright from palette)
═══════════════════════════════════════════ */
.footer {
  background: var(--saffron)!important;
  padding: 56px 0 28px !important;
}
.footer-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr !important;
  gap: 48px !important;
  margin-bottom: 48px;
  width: 100% !important;
  box-sizing: border-box !important;
}
.footer-logo img { height: 32px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.75; }
.footer-col-title {
  color: #fff; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  color: rgba(255,255,255,.75); font-size: 13px; transition: color .18s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.2); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 12px; color: rgba(255,255,255,.65); flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero-eyebrow { animation: fadeUp .4s ease both; }
.hero-h1      { animation: fadeUp .4s .08s ease both; }
.hero-sub     { animation: fadeUp .4s .16s ease both; }
.hero-search  { animation: fadeUp .4s .24s ease both; }
.hero-ctas    { animation: fadeUp .4s .30s ease both; }
.hero-stats   { animation: fadeUp .4s .36s ease both; }
.hero-panel   { animation: fadeUp .4s .18s ease both; }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET ≤ 1024px
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; max-width: 640px; }
  .hero-panel { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-chips { flex-wrap: wrap; }
  .feat-grid { grid-template-rows: auto; }
  .earn-inner { grid-template-columns: 1fr; gap: 36px; }
  .cats-grid  { grid-template-columns: repeat(3, 1fr); }
  .how-panel-layout { grid-template-columns: 1fr; gap: 36px; }
  .new-books-inner { grid-template-columns: 1fr; gap: 36px; }
  .faq-wrap   { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE ≤ 768px
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links, .nav-sign { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: calc(100vh - 63px); align-items: flex-start; padding-top: 0; }
  .hero-inner { padding: 32px 20px; }
  .hero-h1 { font-size: 28px; }
  .hero-sub { font-size: 14px; }
  .hero-search { flex-wrap: wrap; }
  .hero-search-loc, .hero-search-cat { width: calc(50% - 3px); }
  .hero-search input { width: 100%; order: 3; padding: 8px 6px; }
  .hero-search-btn { width: 100%; order: 4; padding: 11px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 18px; }

  /* Sections */
  .section { padding: 52px 0; }
  .section-sm { padding: 36px 0; }

  /* About */
  .feat-grid { grid-template-columns: 1fr 1fr; }

  /* Categories */
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .cats-header { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* How tabs */
  .how-tabs { width: 100%; border-radius: var(--r-sm); }
  .how-tab  { flex: 1; padding: 10px 6px; font-size: 11.5px; text-align: center; }

  /* How panel layout — stack on mobile */
  .how-panel-layout { grid-template-columns: 1fr; gap: 28px; }
  .how-step-connector { margin-left: 38px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr; }
  .stat-block + .stat-block { border-left: none; border-top: 1px solid rgba(255,255,255,.25); padding-top: 24px; margin-top: 24px; }
  .stat-big { font-size: 40px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-header { flex-direction: column; align-items: flex-start; }

  /* FAQ */
  .faq-btn-group { flex-direction: row; flex-wrap: wrap; }
  .faq-btn-group .btn { flex: 1; min-width: 120px; font-size: 12px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Links table */
  .links-table { font-size: 11px; }
  .links-table th, .links-table td { padding: 9px 10px; }

  /* New books */
  .new-books-visual { display: none; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE ≤ 400px
═══════════════════════════════════════════ */
@media (max-width: 400px) {
  .feat-grid { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-search-loc, .hero-search-cat { width: 100%; }
}

/* ----
 Custom CSS for this page only 
*/
.mean-container .mean-bar {
  z-index: 300;
  background: var(--ink-mid);
  border-bottom: 3px solid var(--saffron);
}
.mean-bar span.sidebarBtn span::before, .mean-bar span.sidebarBtn span::after, .mean-bar span.sidebarBtn span {
  background: var(--saffron) !important;
}
.header-btn {
  background: var(--saffron) !important;
}
.header-style-8 .header-btn i {
  background-color: #FFF0 !important;
  color: #fff !important;
}
@media (min-width: 992px) {
  .header-style-8 .main-header {
    box-shadow: none;
    background: var(--ink-mid);
    border-bottom: 3px solid var(--saffron);
  }
}
.header-style-8 .header-btn-area .header-btn {
  color: #fff !important;
  background: var(--saffron);
}
.sub-menu {
  border-radius: var(--r);
}
.main-header .main-navigation-area .main-navigation ul li ul li:hover > a {
  background: var(--saffron-pale);
  color: var(--saffron);
}
.main-header .main-navigation-area .main-navigation ul li ul {
  border-color: unset;
}
.header-style-8 a.header-login-icon i {
  color: #fff !important;
  background-color: var(--saffron) !important;
}
.main-header .main-navigation-area .main-navigation ul li ul li {
  display: block;
  padding: 0;
}
.header-style-8 .header-btn-area .header-btn:hover {
  color: #fff !important;
  background-color: var(--saffron) !important;
}

.elementor a {
  color: var(--saffron);
  font-weight: 600;
  text-decoration: none;
}
.footer-top-area {
  background: var(--saffron) !important;
}
.widget h3::after {
  background: #fff;
}
.footer-top-area a:link, .footer-top-area a:visited {
  color: #fff;
  color: rgba(255,255,255,.75);
}
a.scrollToTop {
  background-color: var(--saffron) !important;
  color: #fff;
  border-color: #fff;
}
@media (min-width: 992px) {
  .header-style-8 .main-header .main-navigation-area .main-navigation .menu-main-menu-container > ul > li > a {
    padding: 6px 8px !important;
    font-size: 13px !important;
    font-weight: 500;
  }
  .header-style-8 .main-header .main-navigation-area .main-navigation ul.menu > li > a:hover{
    color: #fff;
    color: #fff;
    background: rgba(255,255,255,.1);
    border-radius: var(--r-sm);
  }
.header-style-8 .main-header .main-navigation-area .main-navigation ul.menu > li.menu-item-has-children::after {
    bottom: 13px !important;
    right: -2px;
    font-size:10px
  }
}
.footer-bottom-area {
  background: var(--saffron) !important;
  font-size: 12px;
  color: rgba(255,255,255,.65);
  border-top: 1px solid rgba(255,255,255,.2);
  padding: 10px;
}
.widget.widget_classima_about ul li a:hover {
  background-color: #2d1b00;
}
.main-header .main-navigation-area .main-navigation ul.menu > li.current-menu-item > a::after, .main-header .main-navigation-area .main-navigation ul.menu > li.current > a::after {
  background-color: #e67e00;
}