/* ============================================================
   DR STUART ROBINSON — SITE DESIGN SYSTEM
   Direction: The Witness
   Typefaces: Barlow Condensed (display) + Lora (body)
   Palette: Near-black / Off-white / Warm gold / Signal red
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,700;0,900;1,700;1,900&family=Lora:ital,wght@0,400;0,600;1,400&family=Barlow:wght@300;400;500&display=swap');

/* ---- TOKENS ---- */
:root {
  --black:       #080808;
  --ink:         #111111;
  --ink-mid:     #1c1c1c;
  --ink-rule:    #252525;
  --gold:        #c9a04a;
  --gold-dim:    rgba(201,160,74,0.15);
  --gold-border: rgba(201,160,74,0.35);
  --white:       #f2ede4;
  --white-dim:   rgba(242,237,228,0.55);
  --white-faint: rgba(242,237,228,0.18);
  --white-ghost: rgba(242,237,228,0.08);
  --red:         #b8360a;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Lora', serif;
  --font-ui:      'Barlow', sans-serif;
}

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

/* ---- UTILITIES ---- */
.u-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.u-rule-gold {
  width: 48px;
  height: 3px;
  background: var(--gold);
  display: block;
}
.u-section-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 64px;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-rule);
  transition: background 0.3s;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 20px;
  background: var(--gold);
  color: var(--black);
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
}

/* ============================================================
   HERO — THE WITNESS
   Full-bleed photo, type over image
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--ink);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.45;
}
/* Gradient mask — darkens bottom so text reads clean */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.3) 0%,
    rgba(8,8,8,0.1) 30%,
    rgba(8,8,8,0.55) 65%,
    rgba(8,8,8,0.92) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 100px 40px 64px;
  max-width: 900px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-eyebrow-text {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-eyebrow-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--gold-border);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900;
  font-style: italic;
  line-height: 0.93;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
}
.hero-h1 .break {
  display: block;
  font-style: normal;
  font-weight: 300;
  font-size: clamp(18px, 2.4vw, 28px);
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--white-dim);
  font-family: var(--font-body);
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1.5;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin-bottom: 40px;
}
.hero-meta-item {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.45);
}
.hero-meta-div {
  width: 1px;
  height: 10px;
  background: rgba(242,237,228,0.2);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--black);
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-ghost {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 1px solid rgba(242,237,228,0.2);
  color: var(--white-dim);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(242,237,228,0.5);
  color: var(--white);
}

/* Ticker strip */
.hero-ticker {
  position: relative;
  z-index: 2;
  background: var(--gold);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.hero-ticker-inner {
  display: inline-flex;
  gap: 0;
  animation: ticker 28s linear infinite;
}
.hero-ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
}
.ticker-dot {
  width: 4px;
  height: 4px;
  background: rgba(8,8,8,0.35);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   STAT BAR
   ============================================================ */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--ink-rule);
}
.stat-item {
  padding: 28px 32px;
  border-right: 1px solid var(--ink-rule);
}
.stat-item:last-child { border-right: none; }
.stat-n {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-l {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.32);
}

/* ============================================================
   FEATURED BOOK — Future History hero
   ============================================================ */
.featured-book {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--ink-rule);
}
.featured-book-visual {
  background: var(--ink-mid);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--ink-rule);
  position: relative;
  overflow: hidden;
}
.featured-book-visual img {
  width: 55%;
  max-width: 280px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.featured-book-visual-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,160,74,0.06) 0%, transparent 70%);
}
.featured-book-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 5px 12px;
  margin-bottom: 28px;
  width: fit-content;
}
.featured-tag-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.featured-tag-text {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.featured-book-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.featured-book-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: var(--white-dim);
  margin-bottom: 28px;
  line-height: 1.5;
}
.featured-book-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(242,237,228,0.6);
  margin-bottom: 36px;
  max-width: 420px;
}
.featured-book-foreword {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  padding: 14px 16px;
  border-left: 2px solid var(--gold);
  background: var(--white-ghost);
}
.foreword-text {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.foreword-name {
  color: var(--gold);
}
.featured-book-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   BOOKS GRID
   ============================================================ */
.books-section {
  padding: 64px 40px;
  border-bottom: 1px solid var(--ink-rule);
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink-rule);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
}
.section-link {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.section-link:hover { border-color: var(--gold); }
.books-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--ink-rule);
}
.book-card {
  background: var(--ink);
  padding: 24px 20px 20px;
  transition: background 0.2s;
  cursor: pointer;
}
.book-card:hover { background: var(--ink-mid); }
.book-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  background: var(--ink-mid);
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
}
.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.book-card:hover .book-cover img { transform: scale(1.03); }
.book-cover-placeholder {
  width: 100%;
  height: 100%;
  background: var(--ink-mid);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  border-top: 3px solid var(--gold);
}
.book-cover-placeholder-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(242,237,228,0.8);
  line-height: 1.3;
}
.book-cat {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.book-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 6px;
}
.book-price {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(242,237,228,0.38);
  letter-spacing: 0.06em;
}
.book-bestseller {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 2px 6px;
  margin-left: 6px;
}

/* ============================================================
   ENDORSEMENTS
   ============================================================ */
.endorsements {
  padding: 64px 40px;
  background: #0a0a0a;
  border-bottom: 1px solid var(--ink-rule);
}
.endorsements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ink-rule);
  margin-top: 36px;
}
.endorse-item {
  background: var(--ink);
  padding: 32px 28px;
}
.endorse-rule {
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}
.endorse-quote {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(242,237,228,0.72);
  margin-bottom: 20px;
}
.endorse-name {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.endorse-title {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: rgba(242,237,228,0.35);
  letter-spacing: 0.06em;
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--ink-rule);
}
.about-photo {
  background: var(--ink-mid);
  min-height: 400px;
  overflow: hidden;
  position: relative;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-content {
  padding: 56px 48px;
  border-left: 1px solid var(--ink-rule);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.about-body {
  font-size: 0.95rem;
  line-height: 1.78;
  color: rgba(242,237,228,0.62);
  margin-bottom: 28px;
}
.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.credential-item {
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.credential-marker {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.credential-text {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: rgba(242,237,228,0.6);
  line-height: 1.5;
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-section {
  padding: 64px 40px;
  border-bottom: 1px solid var(--ink-rule);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ink-rule);
  margin-top: 36px;
}
.blog-card {
  background: var(--ink);
  padding: 28px 24px;
  transition: background 0.2s;
}
.blog-card:hover { background: var(--ink-mid); cursor: pointer; }
.blog-cat {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.blog-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 12px;
}
.blog-excerpt {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(242,237,228,0.5);
  margin-bottom: 20px;
}
.blog-read {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 1px;
  display: inline-block;
}

/* ============================================================
   LEAD MAGNET STRIP
   ============================================================ */
.lead-magnet {
  background: var(--ink-mid);
  border-top: 1px solid var(--ink-rule);
  border-bottom: 1px solid var(--ink-rule);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.lead-magnet-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.lead-magnet-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 10px;
}
.lead-magnet-sub {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.6;
  max-width: 520px;
}
.lead-magnet-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}
.lead-magnet-input {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  padding: 13px 18px;
  background: var(--black);
  border: 1px solid var(--ink-rule);
  border-right: none;
  color: var(--white);
  width: 240px;
  outline: none;
}
.lead-magnet-input::placeholder { color: rgba(242,237,228,0.28); }
.lead-magnet-input:focus { border-color: var(--gold); }
.lead-magnet-btn {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 22px;
  background: var(--gold);
  color: var(--black);
  white-space: nowrap;
  transition: opacity 0.2s;
}
.lead-magnet-btn:hover { opacity: 0.88; }

/* ============================================================
   SPEAKING / BOOKING
   ============================================================ */
.speaking-section {
  padding: 64px 40px;
  border-bottom: 1px solid var(--ink-rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.speaking-content {}
.speaking-h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 20px;
}
.speaking-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(242,237,228,0.58);
  margin-bottom: 28px;
}
.speaking-topics {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.speaking-topic {
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.topic-marker {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.topic-text {
  font-size: 0.88rem;
  color: rgba(242,237,228,0.6);
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.38);
}
.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  padding: 12px 14px;
  background: var(--ink-mid);
  border: 1px solid var(--ink-rule);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(242,237,228,0.4)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-submit {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--black);
  align-self: flex-start;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
}
.form-submit:hover { opacity: 0.88; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--ink-rule);
  padding: 48px 40px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--ink-rule);
  margin-bottom: 28px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand-sub {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.3);
  margin-bottom: 20px;
}
.footer-col-title {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(242,237,228,0.42);
  transition: color 0.2s;
  letter-spacing: 0.04em;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: rgba(242,237,228,0.22);
  letter-spacing: 0.06em;
}
.footer-publisher {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: rgba(242,237,228,0.22);
  letter-spacing: 0.06em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .books-grid { grid-template-columns: repeat(3, 1fr); }
  .featured-book { grid-template-columns: 1fr; }
  .featured-book-visual { min-height: 320px; border-right: none; border-bottom: 1px solid var(--ink-rule); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 80px 20px 48px; }
  .hero-h1 { font-size: clamp(36px, 10vw, 56px); }
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .books-grid { grid-template-columns: repeat(2, 1fr); }
  .endorsements-grid { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: 1fr; }
  .about-content { padding: 36px 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .lead-magnet { grid-template-columns: 1fr; }
  .lead-magnet-form { flex-direction: column; }
  .lead-magnet-input { width: 100%; border-right: 1px solid var(--ink-rule); border-bottom: none; }
  .speaking-section { grid-template-columns: 1fr; gap: 40px; padding: 40px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .books-section, .endorsements, .blog-section { padding: 48px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .books-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
}

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black);
  flex-direction: column;
  padding: 80px 32px 40px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-dim);
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--ink-rule);
}
.mobile-nav-links a {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid var(--ink-rule);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--gold); }
.mobile-nav-cta {
  margin-top: 32px;
  align-self: flex-start;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-ticker-inner { animation: none; }
}
