@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --navy:          #0f2744;
  --navy-mid:      #1e3a5f;
  --royal:         #1d4ed8;
  --blue:          #3b82f6;
  --sky:           #7dd3fc;
  --pale-blue:     #dbeafe;
  --lightest-blue: #eff6ff;
  --white:         #ffffff;
  --off-white:     #f8fafc;
  --text:          #1e293b;
  --text-mid:      #475569;
  --text-light:    #94a3b8;
  --border:        #e2e8f0;
  --border-blue:   #bfdbfe;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Lato', system-ui, sans-serif;

  --shadow-sm: 0 1px 3px rgba(15, 39, 68, 0.08);
  --shadow-md: 0 4px 16px rgba(15, 39, 68, 0.12);
  --shadow-lg: 0 8px 32px rgba(15, 39, 68, 0.18);

  --radius:    8px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--navy);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--royal); text-decoration: none; }

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

.container--narrow { max-width: 760px; }

.section        { padding: 5rem 0; }
.section--blue  { background: var(--navy-mid); }
.section--pale  { background: var(--lightest-blue); }
.section--tinted { background: var(--off-white); border-top: 1px solid var(--border-blue); border-bottom: 1px solid var(--border-blue); }

/* === NAVIGATION === */
nav:not(.footer-links) {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-blue);
  box-shadow: var(--shadow-sm);
}

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

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
}

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

.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--royal);
  border-bottom-color: var(--royal);
}

/* Hamburger toggle button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--royal);
  color: var(--white);
  border-color: var(--royal);
}
.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--pale-blue);
  border-color: var(--pale-blue);
  color: var(--navy);
}

/* === SECTION LABELS === */
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.section-label--light { color: var(--sky); }

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--navy);
}
.section-title--light { color: var(--white); }

/* === HERO === */
.hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  background: linear-gradient(140deg, var(--navy) 0%, #1a3d6e 55%, #1a4f8a 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
}

/* Decorative glows */
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -160px; left: -160px;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin-bottom: 2.75rem;
  line-height: 1.75;
}

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

/* === ABOUT SECTION === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text .section-title { margin-bottom: 1rem; }

.about-text p {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

/* About section text on dark background */
.section--blue .about-text p { color: rgba(255, 255, 255, 0.75); }

.link-arrow {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--royal);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.section--blue .link-arrow       { color: var(--sky); }
.section--blue .link-arrow:hover { color: var(--white); }
.link-arrow:hover { color: var(--navy); }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.highlight-card {
  background: var(--lightest-blue);
  border-left: 3px solid var(--royal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
}

.highlight-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.highlight-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin: 0;
}

/* === BOOKS / FEATURED WORK === */
.books-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: start;
}

.book-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Book cards on dark background */
.section--blue .book-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.book-cover {
  width: 100%;
  overflow: hidden;
  background: var(--navy);
  flex-shrink: 0;
}

.book-cover--portrait { aspect-ratio: 2 / 3; }
.book-cover--square   { aspect-ratio: 1 / 1; }

.book-cover-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.book-info {
  padding: 1.5rem 1.75rem 1.75rem;
}

.book-info h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.book-series {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 0.85rem;
}
.book-info p {
  color: var(--text-mid);
  font-size: 0.97rem;
  margin-bottom: 1.4rem;
}

/* Book card text on dark background */
.section--blue .book-info h3 { color: var(--white); }
.section--blue .book-series   { color: var(--sky); }
.section--blue .book-info p   { color: rgba(255, 255, 255, 0.72); }

/* === PULL QUOTE === */
.pull-quote-wrapper {
  padding: 5rem 2rem;
}
.pull-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 1.5rem 2.5rem;
}
.pull-quote::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 9rem;
  color: var(--pale-blue);
  position: absolute;
  top: -2.5rem; left: -0.5rem;
  line-height: 1;
  pointer-events: none;
}
.pull-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.pull-quote cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.87rem;
  font-style: normal;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === PAGE HEADER (inner pages) === */
.page-header {
  background: linear-gradient(140deg, var(--navy) 0%, #1a3d6e 100%);
  padding: 4.5rem 2rem;
  text-align: center;
}
.page-header-inner { max-width: 1100px; margin: 0 auto; }
.page-header .section-label { justify-content: center; display: block; }
.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* === PORTRAIT === */
.portrait-card {
  text-align: center;
  margin-bottom: 3.5rem;
}

.portrait-img {
  display: block;
  width: 220px;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  border: 3px solid var(--border-blue);
  box-shadow: var(--shadow-lg);
  margin: 0 auto 1rem;
}

.portrait-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.portrait-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0;
}

/* === TESTIMONY === */
.testimony-content {
  max-width: 760px;
  margin: 0 auto;
}
.testimony-content p {
  font-size: 1.06rem;
  color: var(--text-mid);
  margin-bottom: 1.6rem;
  line-height: 1.9;
}

/* === PORTFOLIO === */
.portfolio-intro {
  max-width: 680px;
  margin-bottom: 3rem;
}
.portfolio-intro p { color: var(--text-mid); font-size: 1.05rem; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  background: var(--white);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.portfolio-card-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.series-heading {
  margin-bottom: 1.5rem;
}

.series-heading--spaced {
  margin-top: 4rem;
}

.series-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy);
}
.series-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.series-title a:hover { color: var(--royal); }

.portfolio-grid--single {
  grid-template-columns: minmax(0, 340px);
}

.cover-heaven {
  background: linear-gradient(155deg, #0a1f3d 0%, #1d4ed8 100%);
}
.cover-darkland {
  background: linear-gradient(155deg, #0f1923 0%, #1e3a5f 60%, #2d4a6e 100%);
}
.cover-mann {
  background: linear-gradient(155deg, #1a0f35 0%, #2d1b69 50%, #1e3a80 100%);
}

.cover-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.cover-author {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cover-series-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portfolio-card-body { padding: 1.5rem; }
.portfolio-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}
.portfolio-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-published  { color: #059669; }
.status-published .status-dot  { background: #059669; }
.status-forthcoming { color: var(--blue); }
.status-forthcoming .status-dot { background: var(--blue); }
.status-progress   { color: #d97706; }
.status-progress .status-dot   { background: #d97706; }

.portfolio-card-body p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin: 0;
}

.portfolio-note {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: var(--lightest-blue);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  color: var(--text-mid);
  font-size: 0.95rem;
}
.portfolio-note strong { color: var(--navy); }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.contact-info > p {
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 42px; height: 42px;
  background: var(--pale-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--royal);
}
.contact-item-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.contact-item-value {
  font-size: 1rem;
  color: var(--text);
}
.contact-item-value a {
  color: var(--text);
  transition: color 0.2s;
}
.contact-item-value a:hover { color: var(--royal); }

.contact-form {
  background: var(--lightest-blue);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

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

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--royal);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--navy); }

/* === FOOTER === */
footer {
  background: var(--navy);
  padding: 3.5rem 2rem;
  text-align: center;
}
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer-tagline {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1.75rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--sky); }
.footer-email a {
  color: var(--sky);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-email a:hover { color: var(--white); }
.footer-hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1.75rem 0 1.25rem;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

/* === PODCAST === */
.podcast-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3.5rem;
  align-items: center;
}

.podcast-cover-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.podcast-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--royal);
  margin-bottom: 1.25rem;
}

.podcast-info p {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.podcast-studies {
  margin: 1.5rem 0;
}

.podcast-studies-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.podcast-studies-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.study-pill {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: var(--pale-blue);
  border: 1px solid var(--border-blue);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}

.podcast-info .btn {
  margin-top: 0.5rem;
}

/* === SUNDAY SCHOOL === */
.sunday-school {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.sunday-school-desc {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.coming-soon-badge {
  display: inline-block;
  padding: 0.4rem 1.4rem;
  background: var(--lightest-blue);
  border: 1px solid var(--border-blue);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

/* === SERIES PAGE === */
.series-book {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4.5rem;
  align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.series-book:last-child { border-bottom: none; padding-bottom: 0; }

.series-book--reverse { grid-template-columns: 1fr 300px; }
.series-book--reverse .series-book-cover { order: 2; }
.series-book--reverse .series-book-body  { order: 1; }

.series-book-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.series-book-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.series-book-body .section-label { margin-bottom: 0.4rem; }

.series-book-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.series-book-body .portfolio-card-meta { margin-bottom: 1.25rem; }

.series-book-body p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.series-book-teaser p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .about-grid,
  .contact-grid,
  .podcast-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .podcast-cover-img { max-width: 240px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr; }
  .book-card { flex-direction: column; align-items: flex-start; }
  /* Mobile nav — hamburger */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
    border-bottom: 2px solid var(--border-blue);
    box-shadow: 0 8px 20px rgba(15, 39, 68, 0.12);
    z-index: 99;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem 2rem;
    border-bottom: none;
    border-left: 3px solid transparent;
    font-size: 0.88rem;
  }
  .nav-links a:hover,
  .nav-links a.active {
    border-bottom-color: transparent;
    border-left-color: var(--royal);
    background: var(--lightest-blue);
  }
  .portfolio-grid { grid-template-columns: 1fr; }
  .series-book,
  .series-book--reverse { grid-template-columns: 1fr; gap: 2rem; }
  .series-book--reverse .series-book-cover,
  .series-book--reverse .series-book-body { order: unset; }
  .series-book-cover { max-width: 220px; margin: 0 auto; }
  .hero { padding: 4rem 1.5rem; min-height: auto; }
  .section { padding: 3.5rem 0; }
  .pull-quote { padding: 1rem 0.5rem; }
  .pull-quote::before { font-size: 6rem; top: -1.5rem; left: -0.25rem; }
}

@media (max-width: 500px) {
  .nav-brand { font-size: 1.1rem; }
  .hero-actions { flex-direction: column; }
  .btn { text-align: center; }
  .contact-form { padding: 1.5rem; }
}
