/* ============================================================
   Fatimah Linda Howard — Author Site v2
   Multi-page, motion-forward, photography-led
   Brand: Author Brand Identity - Fatimah Linda Howard V1
   ============================================================ */

:root {
  --navy: #1B2A3A;
  --navy-2: #243549;
  --navy-deep: #0f1a26;
  --gold: #B89968;
  --gold-soft: #c8ad84;
  --gold-bright: #d4b079;
  --warm-sand: #D4B689;
  --light-sand: #E8D8B7;
  --ivory: #F7F1E3;
  --ivory-2: #fbf6e9;
  --charcoal: #2A2A2A;
  --charcoal-soft: #4a4a4a;
  --rule: #d8c9a8;
  --rule-dark: rgba(184, 153, 104, 0.28);

  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  --max: 1240px;
  --max-narrow: 920px;
  --max-text: 680px;

  --ease: cubic-bezier(0.4, 0.0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }
p { margin: 0 0 1.1em; }

/* ============================================================
   TYPOGRAPHY PRIMITIVES
   ============================================================ */

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1em;
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold-bright); }

.kicker {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 1.4em;
}
.kicker.on-dark { color: var(--ivory); opacity: .8; }

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 0.45em;
}
.display.on-dark { color: var(--ivory); }
.display em { font-style: italic; color: var(--gold); font-weight: 500; }

h2.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.12;
  color: var(--navy);
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}
h2.section-title.on-dark { color: var(--ivory); }
h2.section-title em { font-style: italic; color: var(--gold); font-weight: 500; }

h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--navy);
  margin: 0 0 .5em;
  line-height: 1.3;
}
h3.on-dark { color: var(--ivory); }

h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .6em;
}

.lede {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.55;
  color: var(--charcoal-soft);
  max-width: var(--max-text);
}
.lede.on-dark { color: rgba(247, 241, 227, 0.85); }

.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.4;
  color: var(--navy);
}
.pullquote.on-dark { color: var(--ivory); }
.pullquote .quote-mark {
  display: block;
  font-style: italic;
  color: var(--gold);
  font-size: 3rem;
  line-height: 0.5;
  margin-bottom: 0.4em;
}

blockquote { margin: 0; font-style: italic; }

/* ============================================================
   BUTTONS & LINKS
   ============================================================ */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 18px 32px;
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
  transition: all .35s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s var(--ease-out);
  z-index: -1;
}
.btn:hover { color: var(--ivory); }
.btn:hover::before { transform: scaleX(1); }

.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--ivory); }
.btn--gold::before { background: var(--navy); }
.btn--gold:hover { color: var(--ivory); border-color: var(--navy); }

.btn--ghost-light { border-color: var(--ivory); color: var(--ivory); background: transparent; }
.btn--ghost-light::before { background: var(--ivory); }
.btn--ghost-light:hover { color: var(--navy); }

.link-arrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: all .25s var(--ease);
  display: inline-block;
}
.link-arrow:hover { color: var(--navy); border-color: var(--navy); transform: translateX(4px); }
.link-arrow.on-dark { color: var(--gold-bright); border-color: var(--gold-bright); }
.link-arrow.on-dark:hover { color: var(--ivory); border-color: var(--ivory); }

/* ============================================================
   LAYOUT
   ============================================================ */

.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.container--narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 40px; }
.container--full { max-width: 100%; padding: 0 40px; }

section { padding: 120px 0; position: relative; }
section.dark { background: var(--navy); color: var(--ivory); }
section.sand { background: var(--light-sand); }
section.ivory { background: var(--ivory); }
section.flush { padding: 0; }
section.tight { padding: 80px 0; }

.rule-gold { width: 56px; height: 1px; background: var(--gold); margin: 0 0 32px; }
.rule-gold.center { margin: 0 auto 32px; }

.divider {
  height: 1px;
  background: var(--rule);
  margin: 0 auto;
  max-width: var(--max);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

header.site {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(247, 241, 227, 0.94);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(184, 153, 104, 0.2);
  transition: all .35s var(--ease);
}
header.site.dark-nav {
  background: rgba(15, 26, 38, 0.92);
  border-bottom-color: rgba(184, 153, 104, 0.3);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 32px;
}

.brand-mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.brand-mark small {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-top: 7px;
  text-transform: uppercase;
}
.brand-mark .dot { color: var(--gold); margin: 0 .4em; }
.dark-nav .brand-mark { color: var(--ivory); }
.dark-nav .brand-mark small { color: var(--gold-bright); }

nav.primary ul {
  list-style: none;
  display: flex;
  gap: 36px;
  padding: 0; margin: 0;
}
nav.primary a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 4px;
}
nav.primary a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
nav.primary a:hover::after,
nav.primary a.active::after { width: 100%; }
nav.primary a:hover { color: var(--gold); }
.dark-nav nav.primary a { color: var(--ivory); }
.dark-nav nav.primary a:hover { color: var(--gold-bright); }

.nav-toggle {
  display: none;
  background: transparent; border: 0;
  font-family: var(--sans); font-weight: 700;
  font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--navy);
  cursor: pointer;
  padding: 8px;
}
.dark-nav .nav-toggle { color: var(--ivory); }

/* ============================================================
   MOTION — Scroll-triggered fade-up
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 500ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: 600ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: 700ms; opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
}

/* Hero photo — slow Ken Burns drift */
@keyframes kenburns {
  0% { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1%, -1.5%); }
}
.kenburns img { animation: kenburns 24s ease-in-out infinite alternate; }

/* ============================================================
   LOGO MARQUEE — auto-scrolling press / venue strip
   ============================================================ */

.marquee {
  overflow: hidden;
  padding: 32px 0;
  background: var(--ivory);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.marquee.dark {
  background: var(--navy);
  border-color: rgba(184, 153, 104, 0.28);
}
.marquee-track {
  display: flex;
  gap: 72px;
  width: max-content;
  animation: marquee 38s linear infinite;
  align-items: center;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  white-space: nowrap;
  opacity: .75;
  display: flex; align-items: center;
  gap: 72px;
}
.marquee.dark .marquee-item { color: var(--ivory); opacity: 0.7; }
.marquee-item::after {
  content: '·';
  color: var(--gold);
  font-size: 1.6em;
  margin-left: 0;
  opacity: 0.7;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   HERO COMPONENT
   ============================================================ */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(247, 241, 227, 0.78) 0%, rgba(247, 241, 227, 0.55) 60%, rgba(247, 241, 227, 0.92) 100%);
  pointer-events: none;
}
.hero.hero--dark .hero-bg::after {
  background: linear-gradient(180deg, rgba(15, 26, 38, 0.62) 0%, rgba(15, 26, 38, 0.48) 50%, rgba(15, 26, 38, 0.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 160px 40px 120px;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}
.hero-content .wordmark-block {
  max-width: 880px;
}
.hero-tagline {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.98;
  color: var(--navy);
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}
.hero.hero--dark .hero-display { color: var(--ivory); }
.hero-display em { font-style: italic; color: var(--gold); font-weight: 500; }
.hero-display .line { display: block; }

.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--charcoal-soft);
  max-width: 600px;
  margin: 0 0 44px;
  line-height: 1.5;
}
.hero.hero--dark .hero-sub { color: rgba(247, 241, 227, 0.86); }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Compact hero variant for inner pages */
.hero--compact {
  min-height: 60vh;
}
.hero--compact .hero-content { padding: 140px 40px 90px; }

/* ============================================================
   PHOTO BLOCKS
   ============================================================ */

.photo {
  position: relative;
  overflow: hidden;
  background: var(--light-sand);
}
.photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.photo:hover img { transform: scale(1.04); }
.photo--portrait { aspect-ratio: 4 / 5; }
.photo--square { aspect-ratio: 1 / 1; }
.photo--wide { aspect-ratio: 16 / 9; }
.photo--tall { aspect-ratio: 3 / 4; }

.photo--framed::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(184, 153, 104, 0.6);
  pointer-events: none;
  z-index: 2;
}

/* ============================================================
   FOUR-PILLAR GRID
   ============================================================ */

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.pillar {
  position: relative;
}
.pillar-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--gold);
  transition: all .35s var(--ease);
}
.pillar:hover .pillar-icon {
  background: var(--gold);
  color: var(--ivory);
  transform: rotate(45deg);
}
.pillar:hover .pillar-icon span { transform: rotate(-45deg); }
.pillar-icon span { transition: transform .35s var(--ease); display: inline-block; }
.pillar h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.pillar p {
  color: var(--charcoal-soft);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

/* ============================================================
   FEATURED BOOK BLOCK
   ============================================================ */

.feature-book {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.feature-book.reverse { grid-template-columns: 1.15fr 0.85fr; }
.feature-book.reverse .feature-book-art { order: 2; }
.feature-book-art {
  position: relative;
}
.feature-book-art .photo--cover {
  aspect-ratio: 2 / 3;
  background: var(--navy);
  color: var(--gold-soft);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: transform .6s var(--ease-out);
}
.feature-book-art .photo--cover:hover { transform: translateY(-6px); }
.feature-book-art .photo--cover::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(184, 153, 104, 0.4);
}
.cover-author {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 36px;
}
.cover-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.12;
  color: var(--ivory);
  margin-bottom: 22px;
  letter-spacing: 0.015em;
}
.cover-title em { font-style: italic; color: var(--gold-bright); font-weight: 500; display: block; margin: 6px 0; }
.cover-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--gold-soft);
  line-height: 1.5;
  max-width: 220px;
  margin: 0 auto;
}
.cover-placeholder-note {
  position: absolute;
  bottom: -36px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

.feature-book-body .book-label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.feature-book-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.feature-book-body .book-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 28px;
}
.feature-book-body .book-blurb {
  color: var(--charcoal);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ============================================================
   BOOK META TABLE
   ============================================================ */

.book-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px 32px;
  padding: 26px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 32px;
}
.book-meta dt {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.book-meta dd {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--charcoal);
}

/* ============================================================
   PRAISE CARDS
   ============================================================ */

.praise-card {
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  margin-bottom: 20px;
}
.praise-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.praise-card cite {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  display: block;
}

.praise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.praise-cell {
  background: var(--ivory);
  padding: 40px 36px;
  border-left: 2px solid var(--gold);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease);
}
.praise-cell:hover { transform: translateY(-4px); }
.praise-cell .mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 18px;
  display: block;
}
.praise-cell blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 22px;
}
.praise-cell cite {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.praise-cell .source {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-top: 5px;
  display: block;
}

/* ============================================================
   ACCORDION (for additional talks)
   ============================================================ */

details.accordion {
  border-bottom: 1px solid var(--rule-dark);
  padding: 28px 0;
}
details.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 32px;
}
details.accordion summary::-webkit-details-marker { display: none; }
details.accordion summary h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: var(--ivory);
  margin: 0;
  line-height: 1.2;
  flex: 1;
  transition: color .3s var(--ease);
}
details.accordion[open] summary h3 { color: var(--gold-bright); }
details.accordion summary .plus {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform .35s var(--ease);
  width: 28px; text-align: center;
  flex-shrink: 0;
}
details.accordion[open] summary .plus { transform: rotate(45deg); }
details.accordion .body {
  padding-top: 24px;
  color: rgba(247, 241, 227, 0.8);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 760px;
}
details.accordion .body p { margin-bottom: 1em; }
details.accordion .body strong { color: var(--ivory); font-weight: 500; }
details.accordion .body ul {
  list-style: none; padding: 0; margin: 16px 0;
}
details.accordion .body ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: rgba(247, 241, 227, 0.78);
}
details.accordion .body ul li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--gold);
}

/* ============================================================
   STAT/NUMBER CARDS
   ============================================================ */

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stat .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  font-size: clamp(2.4rem, 3.6vw, 3.2rem);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.stat .label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer.site {
  background: var(--navy-deep);
  color: rgba(247, 241, 227, 0.7);
  padding: 80px 0 32px;
  font-family: var(--sans);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(184, 153, 104, 0.2);
}
.footer-brand .footer-mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 8px;
}
.footer-brand .footer-mark .dot { color: var(--gold); margin: 0 .4em; }
.footer-brand small {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--gold-bright);
  text-transform: uppercase;
}
.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(247, 241, 227, 0.65);
  margin: 24px 0 0;
  max-width: 320px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(247, 241, 227, 0.7);
}
.footer-col a:hover { color: var(--gold-bright); }

.footer-fine {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(247, 241, 227, 0.5);
}
.footer-fine a { color: rgba(247, 241, 227, 0.5); border-bottom: 1px solid rgba(184, 153, 104, 0.4); }
.footer-fine a:hover { color: var(--gold-bright); }

.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(184, 153, 104, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  transition: all .25s var(--ease);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1000px) {
  .nav-toggle { display: block; }
  nav.primary { display: none; }
  nav.primary.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--rule);
    padding: 24px 40px 32px;
  }
  .dark-nav nav.primary.open { background: var(--navy-deep); }
  nav.primary.open ul {
    flex-direction: column;
    gap: 18px;
  }

  .pillars { grid-template-columns: repeat(2, 1fr); gap: 48px 40px; }
  .feature-book, .feature-book.reverse { grid-template-columns: 1fr; gap: 56px; }
  .feature-book.reverse .feature-book-art { order: 0; }
  .praise-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px 40px; }
  section { padding: 90px 0; }
  .hero { min-height: 80vh; }
  .hero-content { padding: 130px 40px 90px; }
}

@media (max-width: 640px) {
  body { font-size: 17px; }
  .container, .container--narrow, .container--full { padding: 0 24px; }
  .nav-row { padding: 16px 24px; }
  .pillars { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; gap: 24px; padding: 32px 0; }
  .book-meta { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  section { padding: 72px 0; }
  .hero-content { padding: 110px 24px 80px; }
  .marquee-item { font-size: 1rem; gap: 48px; }
  .marquee-track { gap: 48px; }
}
