/* ============================================
   T. STARR — SHARED STYLES
   They Never Heard the Final Shot
   ============================================ */

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: #0a0a0a;
  color: #e8e4df;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #8b6914);
  margin-top: 0.75rem;
}

.section-title-center {
  text-align: center;
}

.section-title-center::after {
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #b0a898;
  line-height: 1.8;
  max-width: 700px;
}

.section-subtitle-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.bg-dark {
  background: #0a0a0a;
}

.bg-darker {
  background: #0f0f0f;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: background 0.3s ease;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #c9a84c;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b0a898;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: #c9a84c;
}

.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: #c9a84c;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #b0a898;
  transition: all 0.3s ease;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #c9a84c, #a0841a);
  color: #0a0a0a;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #dab94f, #c9a84c);
  box-shadow: 0 6px 25px rgba(201, 168, 76, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #c9a84c;
  border: 1.5px solid #c9a84c;
}

.btn-secondary:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}

.btn-white {
  background: rgba(255, 255, 255, 0.08);
  color: #e8e4df;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.btn-audible {
  background: linear-gradient(135deg, #f8991d, #e07800);
  color: #0a0a0a;
  box-shadow: 0 4px 15px rgba(248, 153, 29, 0.25);
}

.btn-audible:hover {
  background: linear-gradient(135deg, #ffab3d, #f8991d);
  box-shadow: 0 6px 25px rgba(248, 153, 29, 0.4);
  transform: translateY(-2px);
}

.btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-row-center {
  justify-content: center;
}

/* ============================================
   QUICK FACTS STRIP
   ============================================ */
.quick-facts {
  background: rgba(201, 168, 76, 0.06);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  padding: 1rem 0;
}

.quick-facts-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.quick-fact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #b0a898;
}

.quick-fact strong {
  color: #e8e4df;
  font-weight: 700;
}

.quick-fact-divider {
  width: 4px;
  height: 4px;
  background: rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .quick-facts-inner {
    flex-direction: column;
    gap: 0.5rem;
  }

  .quick-fact-divider {
    display: none;
  }
}

/* ============================================
   FREE PREVIEW / LEAD MAGNET
   ============================================ */
.lead-magnet {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.03));
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 4px;
  padding: 2.5rem;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.lead-magnet-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: linear-gradient(135deg, #c9a84c, #a0841a);
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.lead-magnet h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.lead-magnet p {
  font-size: 0.95rem;
  color: #b0a898;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.lead-magnet .email-form {
  justify-content: center;
}

.lead-magnet .email-form input[type="email"] {
  max-width: 320px;
}

.lead-magnet .privacy-note {
  margin-top: 0.6rem;
}

/* ============================================
   HERO (HOME)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-gradient {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to right, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.85) 50%, rgba(10,10,10,0.6) 100%),
    url('../assets/book-cover.jpg') center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.hero-text h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 900;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-subhead {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: #c9a84c;
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}

.hero-hook {
  font-size: 1.05rem;
  color: #c8c2b8;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-credibility {
  font-size: 0.85rem;
  color: #9a948e;
  line-height: 1.6;
  border-left: 2px solid #c9a84c;
  padding-left: 1rem;
}

.hero-credibility strong {
  color: #b0a898;
}

.hero-book {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

/* 3D BOOK MOCKUP */
.book-3d {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-12deg);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.book-3d:hover {
  transform: rotateY(-4deg) translateY(-8px);
}

.book-3d .hero-book-cover {
  display: block;
  max-width: 320px;
  width: 100%;
  border-radius: 2px 8px 8px 2px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 15px 30px rgba(0,0,0,0.4);
  position: relative;
  z-index: 2;
}

/* Book spine */
.book-3d::before {
  content: '';
  position: absolute;
  top: 2%;
  left: 0;
  width: 28px;
  height: 96%;
  background: linear-gradient(to right, #1a1408, #2a2010 40%, #3a2c14 60%, #1a1408);
  transform: rotateY(90deg) translateZ(14px) translateX(-14px);
  transform-origin: left center;
  z-index: 1;
  border-radius: 2px 0 0 2px;
}

/* Book page edges */
.book-3d::after {
  content: '';
  position: absolute;
  top: 2%;
  right: -3px;
  width: 96%;
  height: 96%;
  background: linear-gradient(to left,
    #f5f0e8 0px, #f5f0e8 2px,
    #e8e0d4 3px, #f5f0e8 4px,
    #e8e0d4 5px, #f5f0e8 6px,
    #e8e0d4 7px
  );
  transform: translateZ(-3px);
  border-radius: 0 2px 2px 0;
  z-index: 0;
}

/* Book shadow on surface */
.book-3d-shadow {
  position: absolute;
  bottom: -30px;
  left: 10%;
  right: 10%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, transparent 70%);
  filter: blur(8px);
  transform: rotateX(90deg);
}

.hero-book-cover {
  max-width: 320px;
  width: 100%;
  border-radius: 4px;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.6),
    0 10px 20px rgba(0,0,0,0.4),
    -5px 0 30px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}

.hero-book-cover:hover {
  transform: scale(1.03) rotate(-1deg);
}

.formats-bar {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.format-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #b0a898;
  transition: color 0.3s ease;
}

.format-link:hover {
  color: #c9a84c;
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  padding: 8rem 0 4rem;
  background:
    linear-gradient(to bottom, rgba(15,15,15,0.92) 0%, rgba(15,15,15,0.96) 60%, rgba(10,10,10,1) 100%),
    url('../assets/book-cover.jpg') center 20%/cover no-repeat;
  text-align: center;
  position: relative;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.page-header .hero-subhead {
  margin-bottom: 0;
}

/* ============================================
   BOOK SECTION
   ============================================ */
.book-body {
  font-size: 1.05rem;
  color: #c8c2b8;
  margin-bottom: 2rem;
  line-height: 1.85;
}

.book-bullets {
  list-style: none;
  margin-bottom: 2.5rem;
}

.book-bullets li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
  color: #d4cfc7;
  font-size: 1rem;
  line-height: 1.75;
}

.book-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  background: #c9a84c;
  border-radius: 1px;
  transform: rotate(45deg);
}

.book-details {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.book-detail {
  text-align: center;
}

.book-detail-value {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #c9a84c;
}

.book-detail-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9a948e;
}

/* ============================================
   AUDIENCE CARDS
   ============================================ */
.audience-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.audience-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.audience-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.audience-card-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #c9a84c;
}

.audience-card h3 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.audience-card p {
  font-size: 0.95rem;
  color: #b0a898;
  line-height: 1.7;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
}

.review-card::before {
  content: '\201C';
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.2);
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}

.review-stars {
  color: #c9a84c;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.98rem;
  color: #d4cfc7;
  line-height: 1.75;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.review-source {
  font-size: 0.82rem;
  color: #9a948e;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.reviews-cta {
  text-align: center;
}

.reviews-note {
  text-align: center;
  font-size: 0.95rem;
  color: #9a948e;
  margin-bottom: 1.5rem;
}

/* ============================================
   AUTHOR BIO
   ============================================ */
.author-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.author-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}

.author-photo-block {
  position: sticky;
  top: 100px;
}

.author-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-photo-placeholder {
  text-align: center;
  padding: 2rem;
}

.author-photo-placeholder span {
  display: block;
  font-size: 0.82rem;
  color: #8a8580;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.author-photo-caption {
  font-size: 0.82rem;
  color: #9a948e;
  font-style: italic;
  margin-top: 0.75rem;
  text-align: center;
}

.author-bio p {
  font-size: 1.05rem;
  color: #c8c2b8;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.author-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #b0a898;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 3px;
  padding: 0.5rem 1rem;
}

.credential-icon {
  color: #c9a84c;
  font-size: 1rem;
}

.author-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: #c9a84c;
  border-left: 3px solid #c9a84c;
  padding-left: 1.5rem;
  margin-top: 2rem;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  padding-left: 2.5rem;
  margin-top: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #c9a84c, rgba(201, 168, 76, 0.15));
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.65rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  background: #c9a84c;
  border-radius: 50%;
  border: 2px solid #0a0a0a;
}

.timeline-era {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.85rem;
  color: #c9a84c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.timeline-body {
  font-size: 0.95rem;
  color: #b0a898;
  line-height: 1.75;
}

/* ============================================
   PLACEHOLDER BLOCKS
   ============================================ */
.placeholder-block {
  background: rgba(201, 168, 76, 0.04);
  border: 1.5px dashed rgba(201, 168, 76, 0.25);
  border-radius: 4px;
  padding: 2rem;
  margin: 1.5rem 0;
}

.placeholder-label {
  font-size: 0.78rem;
  color: #c9a84c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.placeholder-note {
  font-size: 0.9rem;
  color: #9a948e;
  line-height: 1.7;
  font-style: italic;
}

/* ============================================
   MEDIA & SPEAKING
   ============================================ */
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.media-availability h3,
.media-angles h3 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.media-list {
  list-style: none;
}

.media-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  color: #c8c2b8;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.media-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #c9a84c;
  border-radius: 50%;
  flex-shrink: 0;
}

.media-angle {
  background: rgba(201, 168, 76, 0.05);
  border-left: 3px solid #c9a84c;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 0 3px 3px 0;
}

.media-angle p {
  font-size: 0.95rem;
  color: #d4cfc7;
  font-style: italic;
  line-height: 1.6;
}

.media-cta {
  margin-top: 2.5rem;
}

/* ============================================
   SPEAKING TOPICS
   ============================================ */
.speaking-topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.speaking-topic {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.3s ease;
}

.speaking-topic:hover {
  border-color: rgba(201, 168, 76, 0.35);
}

.speaking-topic h3 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.speaking-topic p {
  font-size: 0.93rem;
  color: #b0a898;
  line-height: 1.7;
}

.speaking-formats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.speaking-format {
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  padding: 1.25rem;
  text-align: center;
}

.speaking-format-icon {
  font-size: 1.5rem;
  color: #c9a84c;
  margin-bottom: 0.5rem;
}

.speaking-format h4 {
  font-size: 0.95rem;
  color: #e8e4df;
  margin-bottom: 0.35rem;
}

.speaking-format p {
  font-size: 0.82rem;
  color: #9a948e;
}

/* ============================================
   SPEAKING INQUIRY FORM
   ============================================ */
.inquiry-form-section {
  background: rgba(201, 168, 76, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 4px;
  padding: 3rem;
  margin-top: 2rem;
}

.inquiry-form-section h3 {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.inquiry-form-section > p {
  font-size: 0.95rem;
  color: #b0a898;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-full {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
}

/* ============================================
   FORMS (SHARED)
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.signup-box {
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  padding: 2.5rem;
}

.signup-box h3 {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.signup-box p {
  font-size: 0.95rem;
  color: #b0a898;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.email-form {
  display: flex;
  gap: 0.75rem;
}

.email-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 3px;
  color: #e8e4df;
  outline: none;
  transition: border-color 0.3s ease;
}

.email-form input[type="email"]::placeholder {
  color: #8a8580;
}

.email-form input[type="email"]:focus {
  border-color: #c9a84c;
}

.email-form button {
  padding: 0.85rem 1.5rem;
}

.privacy-note {
  font-size: 0.78rem;
  color: #8a8580;
  margin-top: 0.75rem;
}

.contact-form-box {
  padding: 2.5rem;
}

.contact-form-box h3 {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.contact-form-box p {
  font-size: 0.95rem;
  color: #b0a898;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.85rem 1rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 3px;
  color: #e8e4df;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #c9a84c;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b0a898' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.contact-form select option {
  background: #1a1a1a;
  color: #e8e4df;
}

/* ============================================
   HOME PAGE TEASERS
   ============================================ */
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.teaser-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: #ffffff;
  margin-bottom: 1rem;
}

.teaser-text h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #c9a84c, #8b6914);
  margin-top: 0.6rem;
}

.teaser-text p {
  font-size: 1rem;
  color: #b0a898;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.teaser-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ============================================
   FEATURED QUOTE BANNER
   ============================================ */
.quote-banner {
  padding: 4rem 0;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.93), rgba(15,12,8,0.95)),
    url('../assets/book-cover.jpg') center/cover no-repeat;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  text-align: center;
}

.quote-banner blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  color: #e8e4df;
  max-width: 750px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.quote-banner cite {
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal;
  font-size: 0.88rem;
  color: #c9a84c;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #060606;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 2.5rem 0 7rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: #8a8580;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: #9a948e;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #c9a84c;
}

/* ============================================
   SKIP LINK (Accessibility)
   ============================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #c9a84c;
  color: #0a0a0a;
  padding: 0.5rem 1rem;
  z-index: 10000;
  font-weight: 700;
  font-size: 0.85rem;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* Focus Styles */
a:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid #c9a84c;
  outline-offset: 2px;
}

/* ============================================
   STICKY BUY BAR
   ============================================ */
.sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  padding: 0.75rem 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-buy-bar.visible {
  transform: translateY(0);
}

.sticky-buy-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-buy-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  color: #e8e4df;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-buy-formats {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.8rem;
}

/* ============================================
   TABLE OF CONTENTS
   ============================================ */
.toc-details {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 4px;
  overflow: hidden;
}

.toc-summary {
  padding: 1.25rem 2rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: #c9a84c;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.toc-summary::-webkit-details-marker {
  display: none;
}

.toc-summary::before {
  content: '+ ';
}

details[open] .toc-summary::before {
  content: '\2013\0020';
}

.toc-list {
  padding: 0 2rem 2rem 3rem;
  columns: 2;
  column-gap: 2rem;
}

.toc-list li {
  padding: 0.4rem 0;
  color: #c8c2b8;
  font-size: 0.95rem;
  break-inside: avoid;
}

/* ============================================
   BOOK COVER VARIATIONS
   ============================================ */
/* Inline book cover (used in book page, teasers) */
.book-cover-inline {
  max-width: 280px;
  width: 100%;
  border-radius: 2px 6px 6px 2px;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.5),
    0 8px 16px rgba(0,0,0,0.3),
    inset -3px 0 8px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.book-cover-inline:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.6),
    0 12px 24px rgba(0,0,0,0.4),
    inset -3px 0 8px rgba(0,0,0,0.2);
}

/* Small book thumbnail (sidebar, teasers) */
.book-cover-sm {
  max-width: 120px;
  width: 100%;
  border-radius: 2px 4px 4px 2px;
  box-shadow:
    0 8px 20px rgba(0,0,0,0.4),
    0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.book-cover-sm:hover {
  transform: scale(1.05);
}

/* Book cover with glow effect */
.book-glow {
  position: relative;
}

.book-glow::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* Footer cover decoration */
.footer-book-cover {
  max-width: 60px;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-book-cover:hover {
  opacity: 1;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* TABLET (max-width: 900px) */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-text {
    max-width: 100%;
    order: 2;
  }

  .hero-book {
    order: 1;
  }

  .hero-book-cover {
    max-width: 240px;
  }

  .book-3d {
    transform: rotateY(-8deg);
  }

  .book-3d .hero-book-cover {
    max-width: 240px;
  }

  .book-3d::before {
    width: 20px;
    transform: rotateY(90deg) translateZ(10px) translateX(-10px);
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-credibility {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .teaser-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .teaser-text h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .author-layout {
    grid-template-columns: 1fr;
  }

  .author-photo-block {
    position: static;
    max-width: 300px;
    margin: 0 auto;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .formats-bar {
    justify-content: center;
  }

  .book-cover-inline {
    max-width: 220px;
  }
}

/* MOBILE NAV + LAYOUT (max-width: 768px) */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    font-size: 0.95rem;
  }

  .nav-toggle {
    display: flex;
  }

  section {
    padding: 3.5rem 0;
  }

  .email-form {
    flex-direction: column;
  }

  .lead-magnet .email-form input[type="email"] {
    max-width: 100%;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .audience-cards {
    grid-template-columns: 1fr;
  }

  .speaking-topics {
    grid-template-columns: 1fr;
  }

  .speaking-formats {
    grid-template-columns: 1fr 1fr;
  }

  .inquiry-form-section {
    padding: 2rem 1.5rem;
  }

  .toc-list {
    columns: 1;
  }

  .lead-magnet {
    padding: 2rem 1.25rem;
  }

  .signup-box {
    padding: 2rem 1.25rem;
  }

  .page-header {
    padding: 6.5rem 0 3rem;
  }

  .quote-banner {
    padding: 3rem 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* SMALL MOBILE (max-width: 600px) */
@media (max-width: 600px) {
  .sticky-buy-title {
    display: none;
  }

  .sticky-buy-formats {
    width: 100%;
    justify-content: center;
  }

  .sticky-buy-formats {
    flex-wrap: wrap;
  }

  .sticky-buy-formats .btn {
    flex: 1 1 40%;
    justify-content: center;
    padding: 0.55rem 0.5rem;
    font-size: 0.7rem;
  }

  .hero-bg-gradient {
    background:
      linear-gradient(to bottom, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.95) 100%),
      url('../assets/book-cover.jpg') center/cover no-repeat;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 2rem;
  }

  .hero-content {
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .hero-hook {
    font-size: 0.95rem;
  }

  .book-3d {
    transform: rotateY(0deg);
  }

  .book-3d::before,
  .book-3d::after {
    display: none;
  }

  .book-3d .hero-book-cover {
    max-width: 200px;
    border-radius: 4px;
  }

  .book-3d:hover {
    transform: none;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.82rem;
    width: 100%;
    justify-content: center;
  }

  .btn-row {
    flex-direction: column;
  }

  .btn-row-center {
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .container {
    padding: 0 1rem;
  }

  .container-narrow {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .speaking-formats {
    grid-template-columns: 1fr;
  }

  .credential {
    font-size: 0.82rem;
    padding: 0.4rem 0.75rem;
  }

  .timeline {
    padding-left: 1.75rem;
  }

  .timeline-item::before {
    left: -1.9rem;
  }

  .placeholder-block {
    padding: 1.25rem;
  }

  .book-details {
    justify-content: center;
    gap: 1.25rem;
  }

  .formats-bar {
    gap: 1.25rem;
    justify-content: center;
  }

  .contact-form-box {
    padding: 0;
  }

  .footer-book-cover {
    max-width: 45px;
  }
}

/* TOUCH-FRIENDLY: Minimum tap target sizes */
@media (pointer: coarse) {
  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .btn {
    min-height: 44px;
  }

  .format-link {
    min-height: 44px;
    padding: 0.5rem 0;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    min-height: 48px;
    font-size: 16px; /* Prevents iOS zoom on focus */
  }

  .email-form input[type="email"] {
    min-height: 48px;
    font-size: 16px;
  }
}
