/* ============================================================
   David D. Doda — Author Site Stylesheet
   Brand-consistent with the Who We Are landing page and wf70.com
   Design system: navy / gold / cream editorial
   ============================================================ */

/* ---- VIBRANT BLUE PALETTE ----
   Per user request:
   - "light blue" base = #0088FF, with black text
   - "black" / navy   = #0000FF, with white text
   The variable names are kept (cream, sepia, navy) for HTML compatibility,
   but the values are now the bright blues. Where --cream was previously
   used as TEXT on dark sections, those rules have been updated to use
   --white instead.
   ---- */
:root {
  /* Pure blue — replaces the navy/black */
  --navy:        #0000FF;
  --navy-deep:   #0000CC;
  --navy-mid:    #3939FF;

  /* Gold accent — kept for headlines, eyebrows, stars */
  --gold:        #c8922a;
  --gold-light:  #e8b84b;
  --gold-pale:   #f0e2bc;

  /* Bright blue base — replaces the pale-cream backgrounds */
  --cream:       #AEE0FF;
  --cream-dark:  #AEE0FF;

  /* Mid/tertiary text — now black per user */
  --sepia:       #000000;
  --sepia-dark:  #000000;

  /* Body text — all black on the bright blue base */
  --text-dark:   #000000;
  --text-mid:    #000000;
  --text-muted:  #1a1a1a;

  --red-acc:     #8b2018;
  --white:       #ffffff;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Lora', Georgia, serif;
  --ff-sans:    'Source Sans 3', sans-serif;

  --shadow-sm: 0 4px 14px rgba(0, 50, 120, 0.15);
  --shadow-md: 0 10px 32px rgba(0, 50, 120, 0.20);
  --shadow-lg: 0 24px 60px rgba(0, 50, 120, 0.28);

  --transition: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: #000000; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.narrow    { max-width: 820px;  margin: 0 auto; padding: 0 32px; }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  font-family: var(--ff-sans);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  color: #000000;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.section-title em { color: var(--gold); font-style: italic; }

.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
  margin: 14px 0 28px;
}
.ornament::before, .ornament::after {
  content: ""; height: 1px; flex: 0 0 80px; background: var(--gold);
}
.ornament__dot {
  width: 7px; height: 7px; background: var(--gold);
  transform: rotate(45deg);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
  padding: 0 32px;
}
.section-header .eyebrow { display: block; margin-bottom: 14px; }
.section-header .section-lede {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 22px;
  color: var(--text-mid);
  margin-top: 18px;
  line-height: 1.5;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 2px;
}
.btn--primary {
  background: var(--navy); color: var(--white); border-color: #000000;
}
.btn--primary:hover {
  background: var(--gold); border-color: var(--gold); color: #000000;
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent; color: #000000; border-color: #000000;
}
.btn--outline:hover {
  background: var(--navy); color: var(--white);
  transform: translateY(-2px);
}
.btn--gold {
  background: var(--gold); color: #000000; border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.btn--small { padding: 10px 18px; font-size: 13px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.0);
  backdrop-filter: blur(0);
  transition: all var(--transition);
  padding: 22px 0;
}
.site-nav.scrolled {
  background: rgba(250, 246, 238, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 14px 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.wordmark {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  color: #000000;
  letter-spacing: 0.02em;
}
.wordmark__dot { color: var(--gold); }
.nav-links {
  display: flex; gap: 36px; align-items: center;
  list-style: none;
}
.nav-links a {
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000000;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.is-current::after { width: 100%; }
.nav-links a.is-current { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #000000; margin: 5px 0;
  transition: var(--transition);
}

/* When viewing book pages, the hero is light cream so nav text should be navy.
   When the hero is navy (about page), nav text adapts. */

/* ============================================================
   HOME HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  background:
    radial-gradient(ellipse at top right, rgba(200, 146, 42, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(74, 94, 126, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(74, 94, 126, 0.04) 1px, transparent 1px);
  background-size: 60px 60px, 90px 90px;
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  font-family: var(--ff-sans);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(54px, 8vw, 96px);
  line-height: 0.98;
  color: #000000;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.hero h1 .last-name {
  display: block; color: var(--gold); font-style: italic; font-weight: 500;
}
.hero-credential {
  font-family: var(--ff-sans);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sepia);
  margin-bottom: 36px;
  padding-top: 8px;
  border-top: 1px solid var(--gold);
  display: inline-block;
}
.hero-tagline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.4;
  color: var(--text-mid);
  margin-bottom: 24px;
  max-width: 560px;
}
.hero-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.portrait-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 380px;
  margin-left: auto;
}
.portrait-frame::before {
  content: "";
  position: absolute;
  top: 18px; left: 18px; right: -18px; bottom: -18px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.portrait-frame__img {
  width: 100%; height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-pale);
  font-family: var(--ff-display);
  font-style: italic;
  text-align: center;
  padding: 20px; line-height: 1.5;
}
.portrait-frame__img small {
  display: block;
  font-family: var(--ff-sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 12px;
  opacity: 0.7;
}

/* ============================================================
   BOOK HERO (used on individual book pages)
   ============================================================ */
.book-hero {
  padding: 160px 0 80px;
  background:
    radial-gradient(ellipse at top right, rgba(200, 146, 42, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative; overflow: hidden;
}
.book-hero--noof {
  background:
    radial-gradient(ellipse at top right, rgba(139, 32, 24, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.book-hero-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.book-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  color: #000000;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 18px 0 14px;
}
.book-hero__subtitle {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 22px;
  color: var(--sepia);
  margin-bottom: 24px;
  max-width: 540px;
  line-height: 1.4;
}
.book-hero__rating {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  padding: 10px 18px;
  background: rgba(200, 146, 42, 0.12);
  border-left: 3px solid var(--gold);
}
.book-hero__rating .stars {
  color: var(--gold); font-size: 18px; letter-spacing: 2px;
}
.book-hero__rating .rating-text {
  font-family: var(--ff-sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #000000;
  font-weight: 600;
}
.book-hero__lede {
  font-size: 18px; line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 560px;
}
.book-hero__meta {
  font-family: var(--ff-sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ============================================================
   3D BOOK MOCKUP (works at multiple sizes via .book-3d size var)
   ============================================================ */
.book-3d {
  perspective: 1400px;
  width: 240px; height: 348px;
  margin: 0 auto;
}
.book-3d--large {
  width: 320px; height: 460px;
}
.book-3d__inner {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-22deg);
  transition: transform var(--transition-slow);
}
.book-3d:hover .book-3d__inner,
.book-card:hover .book-3d__inner { transform: rotateY(-12deg); }
.book-3d__cover {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 28px 22px;
  box-shadow:
    2px 2px 0 var(--gold-pale),
    4px 4px 0 var(--gold),
    var(--shadow-lg);
  backface-visibility: hidden;
}
.book-3d--large .book-3d__cover { padding: 36px 28px; }
.book-3d__spine {
  position: absolute;
  left: -16px; top: 0; bottom: 0;
  width: 16px;
  transform: rotateY(-90deg) translateX(8px);
  transform-origin: right center;
}
.book-3d--wf70 .book-3d__cover {
  background:
    linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  text-align: center;
}
.book-3d--wf70 .book-3d__spine { background: var(--navy-deep); }
.book-3d--whoweare .book-3d__cover {
  /* Hardcoded warm tones so the cover pops against the bright blue site
     instead of blending in. Swap for a real cover image when available. */
  background:
    linear-gradient(135deg, rgba(0,0,0,0.05) 0%, transparent 50%),
    linear-gradient(180deg, #faf6ee 0%, #f0e2bc 100%);
  color: #1a2744;
  text-align: center;
  border: 2px solid var(--gold);
}
.book-3d--whoweare .book-3d__spine { background: var(--gold); }

.book-cover-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.book-3d--large .book-cover-title { font-size: 30px; }
.book-cover-sub {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
}
.book-3d--large .book-cover-sub { font-size: 18px; margin-top: 4px; }
.book-cover-author {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
}
.book-3d--large .book-cover-author { font-size: 13px; }
.book-3d--wf70 .book-cover-sub { color: var(--gold-light); }

/* ============================================================
   BOOKS SECTION (home page)
   ============================================================ */
.books-section {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}
.books-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.book-card {
  background: var(--white);
  padding: 56px 48px 48px;
  border: 1px solid rgba(0, 50, 120, 0.18);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  position: relative;
  text-align: left;
}
.book-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.book-card__corner {
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: linear-gradient(225deg, var(--gold) 0%, var(--gold) 50%, transparent 50%);
}
.book-card__badge {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--ff-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000000;
  font-weight: 700;
  transform: rotate(45deg);
  transform-origin: center;
  width: 80px; text-align: center;
}
.book-card .book-3d { margin-bottom: 40px; }
.book-card__title {
  font-family: var(--ff-display);
  font-size: 30px;
  line-height: 1.15;
  color: #000000;
  font-weight: 700;
  margin-bottom: 8px;
}
.book-card__subtitle {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 18px;
  color: var(--sepia);
  margin-bottom: 18px;
}
.book-card__rating {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 18px;
  font-family: var(--ff-sans);
  font-size: 13px;
  color: var(--text-muted);
}
.book-card__rating .stars {
  color: var(--gold); letter-spacing: 1px;
}
.book-card__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.book-card__meta {
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 18px;
  border-top: 1px solid var(--cream-dark);
  margin-bottom: 24px;
}
.buy-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 18px;
}
.buy-row .btn { flex: 1 1 auto; min-width: 0; }
.book-card__learnmore {
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #000000;
  display: inline-flex; align-items: center; gap: 6px;
}
.book-card__learnmore::after {
  content: "→";
  transition: transform var(--transition);
}
.book-card__learnmore:hover::after { transform: translateX(4px); }

/* ============================================================
   BOOK DESCRIPTION SECTION (book detail page)
   ============================================================ */
.book-description {
  padding: 100px 0;
  background: var(--white);
}
.book-description__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}
.book-description p {
  font-size: 19px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.book-description p.lead {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}
.book-description p.dropcap::first-letter {
  font-family: var(--ff-display);
  float: left;
  font-size: 72px;
  line-height: 0.9;
  padding: 8px 14px 0 0;
  color: var(--gold);
  font-weight: 700;
}

/* ============================================================
   REVIEWS — STATS BAR + FEATURED + GRID
   ============================================================ */
.reviews-stats {
  background: var(--navy-deep);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.reviews-stats::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(200, 146, 42, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.reviews-stats__inner {
  max-width: 900px; margin: 0 auto; padding: 0 32px;
  position: relative;
}
.reviews-stats .big-stars {
  font-size: 32px;
  color: var(--gold);
  letter-spacing: 6px;
  margin-bottom: 16px;
}
.reviews-stats .big-number {
  font-family: var(--ff-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.reviews-stats .big-number-sub {
  font-family: var(--ff-sans);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 6px;
}
.reviews-stats__row {
  display: flex; justify-content: center; gap: 60px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.reviews-stats__item {
  text-align: center;
}
.reviews-stats__item-num {
  font-family: var(--ff-display);
  font-size: 36px;
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1;
}
.reviews-stats__item-lbl {
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 6px;
}
.reviews-stats__caption {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-pale);
  margin-top: 36px;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
  line-height: 1.5;
}

/* Featured pull quotes */
.featured-quotes {
  padding: 100px 0;
  background: var(--cream);
}
.featured-quotes-grid {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.featured-quote {
  background: var(--white);
  padding: 48px 44px;
  border: 1px solid rgba(0, 50, 120, 0.18);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.featured-quote::before {
  content: "\201C";
  position: absolute;
  top: -8px; left: 24px;
  font-family: var(--ff-display);
  font-size: 110px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
}
.featured-quote__text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.featured-quote__attr {
  font-family: var(--ff-sans);
}
.featured-quote__attr strong {
  display: block;
  color: #000000;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.featured-quote__attr span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sepia);
}

/* All-reviews masonry */
.all-reviews {
  padding: 100px 0;
  background: var(--cream-dark);
}
.all-reviews__intro {
  text-align: center;
  max-width: 720px; margin: 0 auto 56px;
  padding: 0 32px;
}
.reviews-grid {
  columns: 3;
  column-gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.review-card {
  background: var(--white);
  padding: 32px 28px;
  margin: 0 0 28px;
  break-inside: avoid;
  border: 1px solid rgba(0, 50, 120, 0.18);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  page-break-inside: avoid;
  display: inline-block;
  width: 100%;
}
.review-card__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.review-card__title {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 14px;
}
.review-card__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.review-card__attr {
  padding-top: 14px;
  border-top: 1px solid var(--cream-dark);
  font-family: var(--ff-sans);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.review-card__attr strong {
  display: block;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  font-weight: 700;
}
.review-card__attr .verified {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  margin-right: 6px;
}
.review-card__attr .helpful {
  display: block;
  color: var(--sepia);
  margin-top: 6px;
  font-style: italic;
}

/* ============================================================
   ABOUT SECTION (home snippet AND about page)
   ============================================================ */
.about-section {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 300px; height: 300px;
  border: 1px solid rgba(200, 146, 42, 0.15);
  transform: rotate(45deg);
  pointer-events: none;
}
.about-section .section-title { color: var(--white); }
.about-section .section-title em { color: var(--gold-light); }
.about-section .section-header .eyebrow { color: var(--gold-light); }
.about-grid {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.about-sidebar { position: sticky; top: 110px; }
.about-portrait {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
  border: 1px solid rgba(200, 146, 42, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-pale);
  font-family: var(--ff-display);
  font-style: italic;
  text-align: center;
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-lg);
}
.creds-list { list-style: none; font-family: var(--ff-sans); font-size: 14px; }
.creds-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(200, 146, 42, 0.15);
  color: var(--white);
}
.creds-list li:last-child { border-bottom: none; }
.creds-list strong {
  display: block;
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 4px;
}
.about-body { font-size: 17px; line-height: 1.85; color: var(--white); }
.about-body p { margin-bottom: 22px; }
.about-body p.lead {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: var(--gold-pale);
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.about-body p.dropcap::first-letter {
  font-family: var(--ff-display);
  float: left;
  font-size: 64px;
  line-height: 0.9;
  padding: 6px 12px 0 0;
  color: var(--gold-light);
  font-weight: 700;
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  padding: 120px 0;
  background:
    radial-gradient(ellipse at center, rgba(200, 146, 42, 0.12) 0%, transparent 70%),
    var(--cream);
  text-align: center;
  position: relative;
}
.newsletter-section::before, .newsletter-section::after {
  content: ""; position: absolute;
  width: 200px; height: 1px;
  background: var(--gold);
  top: 80px;
}
.newsletter-section::before { left: 10%; }
.newsletter-section::after { right: 10%; }
.newsletter-inner { max-width: 640px; margin: 0 auto; padding: 0 32px; }
.newsletter-section .section-title { margin-bottom: 20px; }
.newsletter-section p.promise {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 22px;
  color: var(--text-mid);
  margin-bottom: 40px;
  line-height: 1.5;
}
.newsletter-form {
  display: flex;
  max-width: 520px; margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 18px 22px;
  border: 2px solid var(--navy);
  border-right: none;
  font-family: var(--ff-body);
  font-size: 16px;
  background: var(--white);
  color: var(--text-dark);
  outline: none;
}
.newsletter-form input[type="email"]:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 18px 28px;
  background: var(--navy); color: var(--white);
  border: 2px solid var(--navy);
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.newsletter-form button:hover {
  background: var(--gold); border-color: var(--gold); color: #000000;
}
.newsletter-fineprint {
  font-family: var(--ff-sans);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 18px;
  letter-spacing: 0.04em;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 120px 0 100px;
  background: var(--cream-dark);
}
.contact-section--top { padding-top: 160px; }
.contact-grid {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-intro h2 { margin-bottom: 24px; }
.contact-intro p {
  font-size: 17px; line-height: 1.75;
  color: var(--text-mid); margin-bottom: 18px;
}
.contact-intro .speaking-tag {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gold);
}
.contact-form {
  background: var(--white);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 50, 120, 0.18);
}
.form-field { margin-bottom: 22px; }
.form-field label {
  display: block;
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000000;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--cream-dark);
  border-bottom: 2px solid var(--navy);
  background: var(--white);
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-bottom-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 140px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 64px 0 32px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .wordmark { color: var(--white); font-size: 26px; }
.footer-brand p {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--gold-pale);
  margin-top: 12px;
  max-width: 360px;
  line-height: 1.5;
}
.footer-col h4 {
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 15px;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 24px 32px 0;
  border-top: 1px solid rgba(200, 146, 42, 0.2);
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 16px;
  font-family: var(--ff-sans);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.footer-bottom a { color: var(--text-muted); }

/* ============================================================
   RELATED BOOK CARD (slim, for book pages)
   ============================================================ */
.related-section {
  padding: 100px 0;
  background: var(--cream);
}
.related-card {
  max-width: 900px; margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  padding: 48px;
  border: 1px solid rgba(0, 50, 120, 0.18);
  box-shadow: var(--shadow-sm);
}
.related-card__content h3 {
  font-family: var(--ff-display);
  font-size: 28px;
  color: #000000;
  margin-bottom: 6px;
}
.related-card__content .sub {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--sepia);
  margin-bottom: 16px;
}
.related-card__content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
}

/* ============================================================
   DECADE TIMELINE (Who We Are page)
   ============================================================ */
.timeline-section {
  padding: 100px 0;
  background: var(--white);
}
.timeline {
  max-width: 900px; margin: 0 auto; padding: 0 32px;
}
.timeline-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: start;
}
.timeline-row:last-child { border-bottom: none; }
.timeline-decade {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  font-style: italic;
}
.timeline-chapter {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.timeline-headline {
  font-family: var(--ff-display);
  font-size: 22px;
  line-height: 1.4;
  color: #000000;
  font-weight: 500;
  font-style: italic;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .reviews-grid { columns: 2; }
}
@media (max-width: 900px) {
  .hero-grid, .book-hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .portrait-frame { margin: 0 auto; }
  .books-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-sidebar { position: static; }
  .featured-quotes-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .related-card { grid-template-columns: 1fr; padding: 32px; text-align: center; }
  .related-card .book-3d { margin: 0 auto; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 12px 32px 24px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--cream-dark); }
  .nav-toggle { display: block; }
}
@media (max-width: 700px) {
  .reviews-grid { columns: 1; }
  .timeline-row { grid-template-columns: 1fr; gap: 8px; }
  .reviews-stats__row { gap: 32px; }
}
@media (max-width: 600px) {
  body { font-size: 17px; }
  .container, .narrow { padding: 0 22px; }
  .hero, .book-hero { padding: 120px 0 60px; }
  .books-section, .about-section, .newsletter-section,
  .contact-section, .featured-quotes, .all-reviews,
  .book-description, .related-section, .timeline-section { padding: 80px 0; }
  .book-card { padding: 40px 28px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] { border-right: 2px solid var(--navy); border-bottom: none; }
  .reviews-stats .big-number { font-size: 52px; }
  .featured-quote { padding: 36px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
