/* ============================================
   HANNA SEYMOUR — Author Website
   Design System: Editorial / Modern Publishing
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Colors — warm, inviting, editorial */
  --color-cream: #FAF7F2;
  --color-cream-dark: #F0EBE3;
  --color-warm-white: #FFFDF9;
  --color-sage: #8B9E8B;
  --color-sage-light: #C5D4C0;
  --color-sage-dark: #6B7F6B;
  --color-gold: #C8A96E;
  --color-gold-light: #E8D5AA;
  --color-charcoal: #2C2C2C;
  --color-text: #3A3A3A;
  --color-text-light: #6B6B6B;
  --color-text-muted: #999;
  --color-rust: #B85C3A;
  --color-rust-light: #D4845E;
  --color-blush: #E8D5C4;
  --color-white: #FFFFFF;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 8rem);
  --container: min(72rem, 90vw);
  --gap: clamp(1.5rem, 3vw, 3rem);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-warm-white);
  overflow-x: hidden;
}

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

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-charcoal);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

em { font-family: var(--font-serif); font-style: italic; -webkit-font-smoothing: auto; -moz-osx-font-smoothing: auto; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-charcoal);
  letter-spacing: -0.02em;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-light);
  transition: color 0.3s var(--ease);
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--color-charcoal);
}

.nav-cta {
  background: var(--color-charcoal) !important;
  color: var(--color-warm-white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-weight: 500 !important;
  transition: background 0.3s var(--ease) !important;
}

.nav-cta:hover {
  background: var(--color-rust) !important;
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-align: center;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--color-rust);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-rust-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(184, 92, 58, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--color-charcoal);
  border: 1.5px solid var(--color-charcoal);
}

.btn-secondary:hover {
  background: var(--color-charcoal);
  color: var(--color-warm-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-rust);
  border: 1.5px solid var(--color-rust);
}

.btn-outline:hover {
  background: var(--color-rust);
  color: var(--color-white);
}

.btn-small {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  background: var(--color-charcoal);
  color: var(--color-warm-white);
}

.btn-small:hover {
  background: var(--color-rust);
  transform: translateY(-1px);
}

/* --- Section Utilities --- */
.section {
  padding: var(--section-pad) 0;
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-rust);
  margin-bottom: 1rem;
}

.section-eyebrow.center,
.section-title.center,
.section-subtitle.center,
.center {
  text-align: center;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-light);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-warm-white) 50%, var(--color-blush) 100%);
  padding: 8rem 1.5rem 4rem;
  gap: clamp(2rem, 3vw, 4rem);
  max-width: 100vw;
}

.hero-content {
  flex: 1;
  max-width: 36rem;
  padding-left: clamp(1rem, 3vw, 3rem);
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-rust);
  margin-bottom: 1.5rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  color: var(--color-charcoal);
}

.hero-title em {
  color: var(--color-rust);
  font-style: italic;
  font-family: var(--font-serif);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero Book Image */
.hero-book-image {
  perspective: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-cover-img {
  width: clamp(340px, 32vw, 580px);
  height: auto;
}

/* Book Mockup (for secondary books) */
.book-mock {
  width: 220px;
  height: 320px;
  position: relative;
  perspective: 800px;
  transform-style: preserve-3d;
}

.book-mock.small {
  width: 180px;
  height: 260px;
}

.book-cover {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
  border-radius: 2px 8px 8px 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  box-shadow:
    6px 6px 20px rgba(0, 0, 0, 0.15),
    inset -2px 0 4px rgba(0, 0, 0, 0.1);
  transform: rotateY(-8deg);
  transition: transform 0.5s var(--ease);
  position: relative;
}

.book-cover::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 18px;
  background: linear-gradient(90deg, rgba(0,0,0,0.15), transparent);
  border-radius: 2px 0 0 2px;
}

.book-mock:hover .book-cover {
  transform: rotateY(-3deg);
}

.book-cover.alt {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-rust) 100%);
}

.book-cover-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.book-cover-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-white);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.book-mock.small .book-cover-title {
  font-size: 1.3rem;
}

.book-cover-author {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

/* --- Social Proof Bar --- */
.proof-bar {
  background: var(--color-charcoal);
  padding: 1.25rem 1.5rem;
  overflow: hidden;
}

.proof-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.proof-item {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  white-space: nowrap;
}

.proof-highlight {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* --- Book Section --- */
.book-section {
  background: var(--color-cream);
}

.book-tagline {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-rust);
  margin-bottom: 3rem;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

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

.book-video-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  max-width: 64rem;
  margin: 0 auto;
}

.book-video-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.book-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.book-video-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.book-description {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 2.5rem;
}

.endorsement-featured {
  background: var(--color-warm-white);
  border-left: 3px solid var(--color-gold);
  padding: 2rem 2.5rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 3rem;
}

.endorsement-featured p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.endorsement-featured cite {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-style: normal;
  color: var(--color-text-light);
}

.buy-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.buy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.buy-links.compact {
  justify-content: flex-start;
}

.buy-link {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--color-warm-white);
  border: 1.5px solid var(--color-cream-dark);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-charcoal);
  transition: all 0.3s var(--ease);
}

.buy-link:hover {
  border-color: var(--color-rust);
  color: var(--color-rust);
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

/* --- Endorsements --- */
.endorsements-section {
  background: var(--color-warm-white);
}

.endorsements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

.endorsement-card {
  background: var(--color-cream);
  border: none;
  padding: 2.5rem;
  border-radius: 12px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.endorsement-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.endorsement-card p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.endorsement-card cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.endorsement-card cite strong {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-charcoal);
}

.endorsement-card cite span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* --- About --- */
.about-section {
  background: var(--color-cream);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.about-photo-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.about-content p {
  color: var(--color-text);
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.about-content .btn {
  margin-top: 1rem;
}

/* --- Podcasts --- */
.podcasts-section {
  background: var(--color-charcoal);
  color: var(--color-warm-white);
}

.podcasts-section .section-eyebrow {
  color: var(--color-gold);
}

.podcasts-section .section-title {
  color: var(--color-warm-white);
}

.podcasts-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 52rem;
  margin: 0 auto;
}

.podcast-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s var(--ease);
}

.podcast-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.podcast-art {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.podcast-art.nmw {
  background: linear-gradient(135deg, var(--color-rust), var(--color-gold));
}

.podcast-art.two {
  background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark));
}

.podcast-icon {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
}

.podcast-card h3 {
  color: var(--color-warm-white);
  margin-bottom: 0.75rem;
}

.podcast-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}

.podcast-format {
  font-size: 0.8rem !important;
  color: var(--color-gold) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
}

.podcast-links {
  margin-top: 1.5rem;
}

/* --- Speaking --- */
.speaking-section {
  background: var(--color-warm-white);
}

.speaking-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}

.speaking-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.speaking-topics h4 {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.speaking-topics ul {
  list-style: none;
  margin-bottom: 2.5rem;
}

.speaking-topics li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-cream-dark);
  font-size: 1rem;
  color: var(--color-charcoal);
  position: relative;
  padding-left: 1.5rem;
}

.speaking-topics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--color-rust);
  border-radius: 50%;
  transform: translateY(-50%);
}

.speaking-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-rust);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.speaking-testimonial {
  background: var(--color-cream);
  border-radius: 16px;
  padding: 3rem;
  margin-top: 2rem;
}

.speaking-testimonial blockquote p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.speaking-testimonial cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* --- Second Book --- */
.second-book-section {
  background: var(--color-cream);
}

.second-book-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 48rem;
  margin: 0 auto;
}

.second-book-details {
  flex: 1;
}

.second-book-details p {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* --- Bible Studies --- */
.studies-section {
  background: var(--color-warm-white);
}

.studies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto 3rem;
}

.study-card {
  background: var(--color-cream);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}

.study-card:hover {
  border-color: var(--color-sage-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.study-book-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-sage-dark);
  margin-bottom: 0.75rem;
}

.study-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

/* --- CTA / Email Capture --- */
.cta-section {
  background: linear-gradient(160deg, var(--color-blush) 0%, var(--color-cream) 60%, var(--color-sage-light) 100%);
  text-align: center;
}

.cta-layout {
  max-width: 32rem;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  color: var(--color-charcoal);
}

.cta-text {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cta-input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid var(--color-cream-dark);
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--color-white);
  color: var(--color-charcoal);
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.cta-input:focus {
  border-color: var(--color-rust);
}

.cta-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s var(--ease);
}

.social-link:hover {
  color: var(--color-rust);
}

.social-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-rust);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.social-link:hover::after {
  transform: scaleX(1);
}

/* --- Footer --- */
.footer {
  background: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-warm-white);
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s var(--ease);
}

.footer-links a:hover {
  color: var(--color-warm-white);
}

.footer-contact {
  text-align: right;
}

.footer-contact p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.3rem;
}

.footer-contact a {
  font-size: 0.9rem;
  color: var(--color-gold);
  transition: color 0.3s var(--ease);
}

.footer-contact a:hover {
  color: var(--color-gold-light);
}

.footer-copy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* --- Responsive --- */
@media (max-width: 968px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 7rem 1.5rem 4rem;
    min-height: auto;
  }

  .hero-content {
    padding-left: 0;
    margin-left: 0;
    max-width: 100%;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo-img {
    max-width: 320px;
    margin: 0 auto;
  }

  .speaking-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .book-video-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 36rem;
    margin: 0 auto;
  }

  .book-video-wrapper {
    max-width: 100%;
  }

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

  .second-book-layout {
    flex-direction: column;
    text-align: center;
  }

  .buy-links.compact {
    justify-content: center;
  }

  .studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-contact {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-cream);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 1.5rem;
    transition: right 0.4s var(--ease);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-title br {
    display: none;
  }

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

  .speaking-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

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

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

  .proof-item:first-child {
    width: 100%;
    text-align: center;
    margin-bottom: 0.25rem;
  }

  .blog-grid {
    grid-template-columns: 1fr !important;
  }

  .filter-bar {
    gap: 0.5rem !important;
  }

  .filter-btn {
    padding: 0.4rem 0.9rem !important;
    font-size: 0.75rem !important;
  }
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

/* --- Blog Hero --- */
.blog-hero {
  padding: 10rem 1.5rem 4rem;
  background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-warm-white) 50%, var(--color-blush) 100%);
  text-align: center;
}

.blog-hero .section-title {
  margin-bottom: 1rem;
}

/* --- Filter Bar --- */
.blog-filters {
  position: sticky;
  top: 62px;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border: 1.5px solid var(--color-cream-dark);
  border-radius: 100px;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-light);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.filter-btn:hover {
  border-color: var(--color-rust);
  color: var(--color-rust);
}

.filter-btn.active {
  background: var(--color-charcoal);
  border-color: var(--color-charcoal);
  color: var(--color-warm-white);
}

.search-bar {
  max-width: 28rem;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 0.7rem 1.2rem;
  border: 1.5px solid var(--color-cream-dark);
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background: var(--color-white);
  color: var(--color-charcoal);
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.search-input:focus {
  border-color: var(--color-rust);
}

.results-count {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* --- Blog Grid --- */
.blog-grid-section {
  background: var(--color-warm-white);
  padding-top: 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--color-cream);
  border-radius: 12px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  opacity: 0;
  transform: translateY(16px);
}

.blog-card.card-animate {
  animation: cardFadeIn 0.45s var(--ease) forwards;
}

@keyframes cardFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  border-color: var(--color-sage-light);
}

.blog-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.blog-card-cat {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}

.cat-faith {
  background: rgba(139, 158, 139, 0.15);
  color: var(--color-sage-dark);
}

.cat-relationships {
  background: rgba(184, 92, 58, 0.1);
  color: var(--color-rust);
}

.cat-college {
  background: rgba(200, 169, 110, 0.15);
  color: #8B7340;
}

.cat-marriage {
  background: rgba(232, 213, 196, 0.5);
  color: #8B6040;
}

.cat-life {
  background: rgba(44, 44, 44, 0.08);
  color: var(--color-text-light);
}

.blog-card-date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-charcoal);
  margin-bottom: 0.75rem;
  flex-grow: 0;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-read {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-rust);
  transition: letter-spacing 0.3s var(--ease);
}

.blog-card:hover .blog-card-read {
  letter-spacing: 0.04em;
}

/* --- Load More --- */
.load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* --- No Results --- */
.no-results {
  text-align: center;
  padding: 4rem 1rem;
}

.no-results p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* --- Active Nav Link --- */
.nav-links a.active {
  color: var(--color-charcoal);
  font-weight: 600;
}

/* --- Blog Preview (Homepage) --- */
.blog-preview-section {
  background: var(--color-warm-white);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

.blog-preview-card {
  display: flex;
  flex-direction: column;
  background: var(--color-cream);
  border-radius: 12px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
}

.blog-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  border-color: var(--color-sage-light);
}

.blog-preview-card .blog-card-cat {
  align-self: flex-start;
  margin-bottom: 1rem;
}

.blog-preview-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-charcoal);
  margin-bottom: 0.75rem;
}

.blog-preview-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-light);
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-preview-card .blog-card-read {
  margin-top: 1.25rem;
}

@media (max-width: 968px) {
  .blog-preview-grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
  }
}

/* --- Blog Responsive --- */
@media (max-width: 968px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-hero {
    padding: 8rem 1.5rem 3rem;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero .section-title br {
    display: none;
  }
}

/* ============================================
   BLOG POST (Article) PAGE STYLES
   ============================================ */

/* --- Loading Skeleton --- */
.skeleton {
  background: linear-gradient(90deg, var(--color-cream-dark) 25%, var(--color-cream) 50%, var(--color-cream-dark) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: 6px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-cat {
  width: 80px;
  height: 24px;
  border-radius: 100px;
  margin: 0 auto 1.5rem;
}

.skeleton-title {
  width: 80%;
  height: 40px;
  margin: 0 auto 1rem;
}

.skeleton-title.short {
  width: 50%;
}

.skeleton-date {
  width: 140px;
  height: 16px;
  margin: 1.5rem auto 0;
}

.skeleton-line {
  width: 100%;
  height: 16px;
  margin-bottom: 1rem;
}

.skeleton-line.short {
  width: 75%;
}

.skeleton-line.shorter {
  width: 55%;
}

/* --- Post Header --- */
.post-header {
  padding: 10rem 1.5rem 3rem;
  background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-warm-white) 50%, var(--color-blush) 100%);
  text-align: center;
}

.post-back {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  transition: color 0.3s var(--ease);
  letter-spacing: 0.02em;
}

.post-back:hover {
  color: var(--color-rust);
}

.post-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.post-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-charcoal);
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.post-meta::before,
.post-meta::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--color-cream-dark);
}

.post-date {
  color: var(--color-text-muted);
}

.post-author {
  font-weight: 500;
  color: var(--color-text);
}

/* --- Post Body / Content --- */
.post-body {
  padding: clamp(2.5rem, 5vw, 5rem) 1.5rem;
  background: var(--color-warm-white);
}

.post-content-inner {
  max-width: 40rem;
  margin: 0 auto;
}

/* --- Article Prose Typography --- */
.post-content-inner p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 1.75rem;
}

.post-content-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--color-charcoal);
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.post-content-inner h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 600;
  color: var(--color-charcoal);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.post-content-inner h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-charcoal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.post-content-inner a {
  color: var(--color-rust);
  text-decoration: underline;
  text-decoration-color: rgba(184, 92, 58, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s var(--ease);
}

.post-content-inner a:hover {
  text-decoration-color: var(--color-rust);
}

.post-content-inner strong {
  font-weight: 600;
  color: var(--color-charcoal);
}

.post-content-inner em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05em;
}

/* --- Lists --- */
.post-content-inner ul,
.post-content-inner ol {
  margin: 1.5rem 0 2rem;
  padding-left: 1.5rem;
}

.post-content-inner li {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.post-content-inner ul li::marker {
  color: var(--color-rust);
}

.post-content-inner ol li::marker {
  color: var(--color-rust);
  font-weight: 600;
}

/* --- Blockquotes --- */
.post-content-inner blockquote {
  margin: 2.5rem 0;
  padding: 2rem 2.5rem;
  border-left: 3px solid var(--color-gold);
  background: var(--color-cream);
  border-radius: 0 12px 12px 0;
}

.post-content-inner blockquote p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-charcoal);
  margin-bottom: 0.75rem;
}

.post-content-inner blockquote p:last-child {
  margin-bottom: 0;
}

.post-content-inner blockquote cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

/* --- Images & Figures --- */
.post-content-inner img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 0.5rem 0;
}

.post-content-inner figure,
.post-content-inner .post-figure {
  margin: 2.5rem -2rem;
  text-align: center;
}

.post-content-inner figure img,
.post-content-inner .post-figure img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.post-content-inner figcaption {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  font-style: italic;
}

/* --- Horizontal Rules --- */
.post-content-inner hr {
  border: none;
  height: 1px;
  background: var(--color-cream-dark);
  margin: 3rem auto;
  max-width: 120px;
}

/* --- Embedded Videos / iframes --- */
.post-content-inner iframe {
  max-width: 100%;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* --- Tables --- */
.post-content-inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.post-content-inner th,
.post-content-inner td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-cream-dark);
  text-align: left;
}

.post-content-inner th {
  font-weight: 600;
  color: var(--color-charcoal);
  background: var(--color-cream);
}

/* --- Fallback Notice --- */
.post-excerpt-fallback {
  font-size: 1.2rem !important;
  line-height: 1.85 !important;
  color: var(--color-text) !important;
  margin-bottom: 2rem !important;
}

.post-fallback-notice {
  background: var(--color-cream);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.post-fallback-notice p {
  font-size: 0.95rem !important;
  color: var(--color-text-light) !important;
  margin: 0 !important;
}

.post-fallback-notice a {
  color: var(--color-rust);
  font-weight: 500;
}

/* --- Post Footer / Share --- */
.post-footer {
  padding: 0 1.5rem 4rem;
  background: var(--color-warm-white);
}

.post-share {
  border-top: 1px solid var(--color-cream-dark);
  padding-top: 2.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.post-share-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.post-share-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.post-share-btn {
  display: inline-block;
  padding: 0.55rem 1.25rem;
  border: 1.5px solid var(--color-cream-dark);
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-light);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
}

.post-share-btn:hover {
  border-color: var(--color-rust);
  color: var(--color-rust);
}

.post-nav-bottom {
  text-align: center;
}

/* --- Post Responsive --- */
@media (max-width: 968px) {
  .post-header {
    padding: 8rem 1.5rem 2.5rem;
  }

  .post-content-inner figure,
  .post-content-inner .post-figure {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
}

@media (max-width: 640px) {
  .post-header {
    padding: 7rem 1.5rem 2rem;
  }

  .post-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .post-meta::before,
  .post-meta::after {
    display: none;
  }

  .post-content-inner figure,
  .post-content-inner .post-figure {
    margin-left: 0;
    margin-right: 0;
  }

  .post-content-inner blockquote {
    padding: 1.5rem;
    margin-left: 0;
    margin-right: 0;
  }

  .post-share-links {
    flex-direction: column;
    align-items: center;
  }
}
