/* ══════════════════════════════════════════════════════════════
   KEVINFRENCH.COM — MASTER STYLESHEET
   ══════════════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --bg: #0A0A0A;
  --surface: #111111;
  --surface-hover: #181818;
  --white: #EDEDED;
  --white-mid: #AAAAAA;
  --white-dim: #555555;
  --red: #DB143B;
  --red-hover: #B8102F;
  --red-glow: rgba(219, 20, 59, 0.15);
  --grid-line: rgba(255,255,255,0.04);
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Archivo', sans-serif;
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ── GRID OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

body > * { position: relative; z-index: 1; }


/* ══════════════════════════════════════════════════════════════
   SHARED COMPONENTS (all pages)
   ══════════════════════════════════════════════════════════════ */

/* ── TOP BAR ── */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar-name {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-mid);
  transition: color 0.2s;
}
.top-bar-name:hover { color: var(--white); }
.top-bar-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.top-bar-links a {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.2s;
}
.top-bar-links a:hover { color: var(--red); }
.top-bar-links a.active { color: var(--red); }
.top-bar-links svg { width: 16px; height: 16px; }

/* ── FOOTER ── */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-links { display: flex; gap: 24px; }
.footer a { color: var(--white-dim); transition: color 0.2s; }
.footer a:hover { color: var(--red); }

/* ── PAGE HEADER (books, speaking, contact) ── */
.page-header {
  padding: 80px 40px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-header-overline {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-header-overline::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--red);
}
.page-title {
  font-size: clamp(56px, 10vw, 140px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}
.page-title span { color: transparent; -webkit-text-stroke: 1.5px var(--white-dim); }
.page-subtitle {
  margin-top: 24px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(18px, 2vw, 26px);
  font-style: italic;
  color: var(--white-mid);
  max-width: 640px;
  line-height: 1.45;
}

/* ── QUOTE BAND (shared: index, speaking) ── */
.quote-band {
  padding: 72px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: var(--surface);
  text-align: center;
}
.quote-band blockquote {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(22px, 3vw, 38px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  max-width: 800px;
  margin: 0 auto;
  color: var(--white);
}
.quote-band blockquote strong { color: var(--red); font-weight: 400; }
.quote-band cite {
  display: block;
  margin-top: 16px;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* ── SHARED BUTTON ── */
.notify-btn,
.booking-btn,
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--red);
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, gap 0.3s;
}
.notify-btn:hover,
.booking-btn:hover,
.about-cta-btn:hover { background: var(--red-hover); gap: 18px; }
.notify-btn svg,
.booking-btn svg,
.about-cta-btn svg { width: 14px; height: 14px; }
.about-cta-btn { padding: 16px 32px; }
.about-cta-btn svg { width: 16px; height: 16px; }
.booking-btn { padding: 16px 32px; }


/* ══════════════════════════════════════════════════════════════
   HOMEPAGE (index.html)
   ══════════════════════════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 80px 40px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  gap: 40px;
  min-height: 520px;
}
.hero-overline {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-overline::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--red);
}
.hero-name {
  font-size: clamp(72px, 12vw, 180px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--white);
  animation: nameReveal 0.6s ease both;
}
.hero-name span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white-dim);
}
.hero-tagline {
  margin-top: 32px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-style: italic;
  font-weight: 400;
  color: var(--white-mid);
  max-width: 600px;
  line-height: 1.4;
}

/* ── HERO BOOK COVER ── */
.hero-book {
  position: relative;
  flex-shrink: 0;
  animation: bookSlide 0.8s ease 0.3s both;
}
.hero-book-wrapper {
  width: 260px;
  height: 380px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  box-shadow:
    -20px 20px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  display: block;
}
.hero-book-wrapper:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow:
    -24px 28px 70px rgba(0,0,0,0.6),
    0 0 40px rgba(219, 20, 59, 0.08),
    0 0 0 1px rgba(255,255,255,0.06);
}
.book-face {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 28px;
  background: linear-gradient(180deg, #0D0D0D 0%, #111 40%, #0A0A0A 100%);
  position: relative;
}
.book-face::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
.book-face::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 28px; right: 28px;
  height: 1px;
  background: rgba(255,255,255,0.06);
}
.book-top-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.book-title-block {
  margin-top: auto;
  margin-bottom: auto;
}
.book-title-main {
  font-family: 'Archivo', sans-serif;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 4px;
}
.book-title-sub {
  font-family: 'Archivo', sans-serif;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--red);
}
.book-subtitle {
  margin-top: 16px;
  font-family: 'Instrument Serif', serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.45;
  color: var(--white-mid);
}
.book-author {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.book-spine {
  position: absolute;
  left: -12px;
  top: 0;
  width: 12px;
  height: 100%;
  background: linear-gradient(180deg, #1A1A1A, #0D0D0D);
  border-left: 1px solid rgba(255,255,255,0.04);
  transform: skewY(-2deg);
  transform-origin: top right;
}
.hero-book-label {
  margin-top: 16px;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-align: center;
}
.hero-book-label strong { color: var(--red); font-weight: 500; }

/* ── STATS RIBBON ── */
.stats-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stat {
  padding: 32px 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat-number {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}
.stat-number .accent { color: var(--red); }
.stat-label {
  margin-top: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* ── GATEWAY BLOCKS ── */
.gateway {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.gateway-block {
  padding: 64px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.gateway-block:nth-child(2n) { border-right: none; }
.gateway-block:hover { background: var(--surface-hover); }
.gateway-block:hover .gateway-arrow { transform: translate(4px, -4px); }
.gateway-block:hover::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}
.gateway-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}
.gateway-content { margin-top: auto; }
.gateway-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.gateway-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--white-mid);
  font-weight: 300;
  max-width: 400px;
}
.gateway-arrow {
  position: absolute;
  top: 40px; right: 40px;
  color: var(--white-dim);
  transition: transform 0.3s;
}
.gateway-arrow svg { width: 24px; height: 24px; }

/* ── BOOKS STRIP ── */
.books-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.book-block {
  padding: 56px 48px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  gap: 32px;
  align-items: center;
  transition: background 0.3s;
  cursor: pointer;
}
.book-block:last-child { border-right: none; }
.book-block:hover { background: var(--surface-hover); }
.book-strip-spine {
  width: 12px;
  height: 160px;
  background: var(--red);
  flex-shrink: 0;
  position: relative;
}
.book-strip-spine::after {
  content: '';
  position: absolute;
  top: 0; left: 12px;
  width: 80px;
  height: 160px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
}
.book-meta { padding-left: 100px; }
.book-year {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 8px;
}
.book-title-strip {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.book-subtitle-strip {
  font-size: 13px;
  color: var(--white-mid);
  font-weight: 300;
  line-height: 1.55;
}

/* ── ABOUT SECTION ── */
.about-section {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.about-header {
  padding: 80px 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.about-header-overline {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-header-overline::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--red);
}
.about-title {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
  padding-bottom: 48px;
}
.about-title span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white-dim);
}
.about-bio {
  padding: 64px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  max-width: 860px;
}
.headshot-square {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  background: var(--surface-hover);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  margin: 4px 28px 16px 0;
  shape-outside: margin-box;
  object-fit: cover;
}
.headshot-square span {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.about-bio p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--white-mid);
  font-weight: 300;
  margin-bottom: 20px;
}
.about-bio p:last-child { margin-bottom: 0; }
.about-bio strong { color: var(--white); font-weight: 500; }
.about-bio em { font-style: italic; color: var(--white); }

/* Career Strip */
.career-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.career-item {
  padding: 36px 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.career-item:last-child { border-right: none; }
.career-item:hover { background: var(--surface-hover); }
.career-role {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  line-height: 1.2;
}
.career-company {
  font-family: 'Instrument Serif', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--white-mid);
  margin-bottom: 8px;
}
.career-note {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--red);
  text-transform: uppercase;
}

/* Beliefs */
.beliefs {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.belief {
  padding: 48px 48px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.belief:nth-child(2n) { border-right: none; }
.belief:nth-child(n+3) { border-bottom: none; }
.belief-number {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--white-dim);
  margin-bottom: 16px;
}
.belief-text {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
  color: var(--white);
  max-width: 400px;
}
.belief-text strong { color: var(--red); font-weight: 400; }

/* About CTA */
.about-cta {
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-cta-text { max-width: 500px; }
.about-cta-text h3 {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.about-cta-text p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--white-mid);
  font-weight: 300;
}

/* ── ANIMATIONS ── */
@keyframes nameReveal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bookSlide {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}


/* ══════════════════════════════════════════════════════════════
   BOOKS PAGE (books.html)
   ══════════════════════════════════════════════════════════════ */

/* ── BOOK FEATURE (full width) ── */
.book-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  min-height: 560px;
}
.book-feature.reversed { direction: rtl; }
.book-feature.reversed > * { direction: ltr; }

.book-cover-area {
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-right: 1px solid rgba(255,255,255,0.06);
  min-width: 360px;
}
.book-feature.reversed .book-cover-area {
  border-right: none;
  border-left: 1px solid rgba(255,255,255,0.06);
}

.book-cover-lg {
  width: 280px;
  height: 400px;
  position: relative;
  box-shadow: -20px 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.4s ease;
}
.book-cover-lg:hover {
  transform: translateY(-6px) rotate(-1deg);
}
.cover-face {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* Inversion Selling cover */
.cover-is {
  background: linear-gradient(180deg, #0D0D0D 0%, #111 40%, #0A0A0A 100%);
  padding: 36px 32px;
}
.cover-is::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--red);
}
.cover-is .cover-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.cover-is .cover-title-block { margin: auto 0; }
.cover-is .cover-main {
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
}
.cover-is .cover-main-accent {
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--red);
}
.cover-is .cover-sub {
  margin-top: 16px;
  font-family: 'Instrument Serif', serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.45;
  color: var(--white-mid);
}
.cover-is .cover-author {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* Last Billable Hour cover */
.cover-lbh {
  background: linear-gradient(180deg, #F0EBE3 0%, #E8E0D4 100%);
  padding: 36px 32px;
  color: #1A1A18;
}
.cover-lbh::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: var(--red);
}
.cover-lbh .cover-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8A8A80;
}
.cover-lbh .cover-title-block { margin: auto 0; }
.cover-lbh .cover-main {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #1A1A18;
}
.cover-lbh .cover-main-accent {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--red);
}
.cover-lbh .cover-sub {
  margin-top: 16px;
  font-family: 'Instrument Serif', serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.45;
  color: #5A5A52;
}
.cover-lbh .cover-author {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8A8A80;
}

/* Death of the Salesperson cover */
.cover-dots {
  background: #111111;
  padding: 36px 32px;
  position: relative;
}
.cover-dots::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 40px;
  transform: translateY(-50%);
  background: var(--red);
  opacity: 0.9;
}
.cover-dots .cover-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  position: relative;
  z-index: 1;
}
.cover-dots .cover-title-block {
  margin: auto 0;
  position: relative;
  z-index: 1;
}
.cover-dots .cover-main {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--white);
}
.cover-dots .cover-main-accent {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: var(--white);
  margin-top: 12px;
  opacity: 0.6;
}
.cover-dots .cover-sub {
  margin-top: 16px;
  font-family: 'Instrument Serif', serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.45;
  color: var(--white-mid);
}
.cover-dots .cover-author {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  position: relative;
  z-index: 1;
}

/* Book detail side */
.book-detail {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.book-detail-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.book-detail-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.book-detail-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--white-mid);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 32px;
}

/* Chapter preview */
.chapter-preview {
  margin-bottom: 32px;
}
.chapter-preview-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.chapter-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chapter-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.chapter-num {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  width: 24px;
}
.chapter-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white-mid);
}

/* Author Strip */
.author-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: var(--surface);
}
.author-photo {
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  background: var(--surface-hover);
}
.author-photo span {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-bio {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.author-bio-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.author-bio p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--white-mid);
  font-weight: 300;
  max-width: 600px;
}
.author-bio strong { color: var(--white); font-weight: 500; }


/* ══════════════════════════════════════════════════════════════
   SPEAKING PAGE (speaking.html)
   ══════════════════════════════════════════════════════════════ */

/* ── KEYNOTE TOPICS ── */
.topics {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topic {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: start;
  padding: 48px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
  cursor: pointer;
  gap: 40px;
}
.topic:last-child { border-bottom: none; }
.topic:hover { background: var(--surface-hover); }
.topic:hover .topic-arrow { transform: translate(4px, -4px); opacity: 1; }
.topic-number {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--red);
  padding-top: 6px;
}
.topic-content { max-width: 640px; }
.topic-title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.topic-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--white-mid);
  font-weight: 300;
  margin-bottom: 16px;
}
.topic-audience {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.topic-audience strong { color: var(--white-mid); font-weight: 500; }
.topic-arrow {
  color: var(--white-dim);
  opacity: 0.3;
  transition: transform 0.3s, opacity 0.3s;
  padding-top: 6px;
}
.topic-arrow svg { width: 24px; height: 24px; }

/* ── FORMAT STRIP ── */
.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.format {
  padding: 48px 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.format:last-child { border-right: none; }
.format:hover { background: var(--surface-hover); }
.format-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(219, 20, 59, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.format-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}
.format-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.format-duration {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.format-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--white-mid);
  font-weight: 300;
}

/* ── BOOKING CTA ── */
.booking-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.booking-text {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.booking-text h2 {
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.05;
}
.booking-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--white-mid);
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 32px;
}
.booking-details {
  padding: 64px 48px;
  border-left: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.booking-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.booking-detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.booking-detail-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}
.booking-detail-text h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.booking-detail-text p {
  font-size: 13px;
  color: var(--white-mid);
  font-weight: 300;
  line-height: 1.5;
}


/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE (contact.html)
   ══════════════════════════════════════════════════════════════ */

/* ── CONTACT GRID ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-message {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.contact-message p {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  line-height: 1.45;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 480px;
}
.contact-message .contact-note {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-style: normal;
  line-height: 1.65;
  color: var(--white-mid);
  font-weight: 300;
  max-width: 480px;
}
.contact-channels {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
.channel {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.channel-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}
.channel-value a {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.channel-value a:hover { color: var(--red); }
.channel-context {
  font-size: 13px;
  color: var(--white-dim);
  font-weight: 300;
  line-height: 1.5;
}

/* ── WHAT TO EXPECT ── */
.expect-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.expect-item {
  padding: 48px 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.expect-item:last-child { border-right: none; }
.expect-icon {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.expect-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.expect-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--white-mid);
  font-weight: 300;
}

/* ── NOT-RIGHT-FOR ── */
.not-right {
  padding: 56px 48px;
  background: var(--surface);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.not-right-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 20px;
}
.not-right-title {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.not-right p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--white-mid);
  font-weight: 300;
  max-width: 700px;
}
.not-right strong { color: var(--white); font-weight: 500; }


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-book { display: flex; flex-direction: column; align-items: flex-start; margin-top: 40px; }
  .hero-book-wrapper { width: 200px; height: 290px; }
  .book-title-main, .book-title-sub { font-size: 22px; }
  .book-face { padding: 24px 20px; }
  .book-subtitle { font-size: 11px; }
}

@media (max-width: 960px) {
  /* Stats */
  .stats-ribbon { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.06); }

  /* Gateway */
  .gateway { grid-template-columns: 1fr; }
  .gateway-block { border-right: none; min-height: 240px; }

  /* Books strip */
  .books-strip { grid-template-columns: 1fr; }
  .book-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .book-block:last-child { border-bottom: none; }

  /* Career */
  .career-strip { grid-template-columns: repeat(2, 1fr); }
  .career-item:nth-child(2) { border-right: none; }
  .career-item:nth-child(1), .career-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.06); }

  /* Beliefs */
  .beliefs { grid-template-columns: 1fr; }
  .belief { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .belief:last-child { border-bottom: none; }

  /* About CTA */
  .about-cta { flex-direction: column; gap: 32px; align-items: flex-start; }

  /* Book feature (books page) */
  .book-feature, .book-feature.reversed { grid-template-columns: 1fr; direction: ltr; }
  .book-feature.reversed > * { direction: ltr; }
  .book-cover-area { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); min-width: unset; padding: 48px 40px; }
  .book-feature.reversed .book-cover-area { border-left: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .book-detail { padding: 48px 40px; }
  .author-strip { grid-template-columns: 1fr; }
  .author-photo { width: 100%; min-height: 200px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }

  /* Topics (speaking page) */
  .topic { grid-template-columns: 1fr; gap: 12px; }
  .topic-number { padding-top: 0; }
  .topic-arrow { display: none; }
  .formats { grid-template-columns: 1fr; }
  .format { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .format:last-child { border-bottom: none; }
  .booking-cta { grid-template-columns: 1fr; }
  .booking-details { border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }

  /* Contact page */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-message { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .expect-strip { grid-template-columns: 1fr; }
  .expect-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .expect-item:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  /* Global */
  .top-bar { padding: 16px 20px; flex-wrap: wrap; gap: 12px; }
  .footer { padding: 20px; flex-direction: column; gap: 12px; text-align: center; }
  .page-header { padding: 48px 20px 32px; }
  .quote-band { padding: 48px 20px; }

  /* Homepage */
  .hero { padding: 48px 20px 40px; }
  .stat { padding: 24px 20px; }
  .gateway-block { padding: 40px 20px; min-height: 200px; }
  .gateway-arrow { top: 20px; right: 20px; }
  .book-block { padding: 32px 20px; gap: 20px; }
  .book-meta { padding-left: 80px; }
  .book-strip-spine::after { width: 60px; }
  .about-header { padding: 48px 20px 0; }
  .about-bio { padding: 40px 20px; }
  .headshot-square { width: 90px; height: 90px; margin-right: 20px; }
  .career-strip { grid-template-columns: 1fr; }
  .career-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .career-item:last-child { border-bottom: none; }
  .belief { padding: 32px 20px; }
  .about-cta { padding: 40px 20px; }

  /* Books page */
  .book-cover-area { padding: 32px 20px; }
  .book-cover-lg { width: 220px; height: 320px; }
  .cover-is, .cover-lbh, .cover-dots { padding: 24px 20px; }
  .cover-is .cover-main, .cover-is .cover-main-accent { font-size: 26px; }
  .cover-lbh .cover-main, .cover-lbh .cover-main-accent { font-size: 22px; }
  .book-detail { padding: 32px 20px; }
  .author-bio { padding: 32px 20px; }

  /* Speaking page */
  .topic { padding: 32px 20px; }
  .format { padding: 32px 20px; }
  .booking-text { padding: 40px 20px; }
  .booking-details { padding: 40px 20px; }

  /* Contact page */
  .contact-message { padding: 40px 20px; }
  .contact-channels { padding: 40px 20px; }
  .expect-item { padding: 32px 20px; }
  .not-right { padding: 32px 20px; }
}
