/* ==========================================================================
   Restore Your Prime - Stylesheet
   Inspired by Biltmore Restorative Medicine brand palette
   ========================================================================== */

:root {
  /* Brand Palette - drawn from book cover & Biltmore site */
  --navy-deep: #1a3a5c;
  --navy: #234870;
  --navy-light: #3d6a99;
  --blue-soft: #b8d4e8;
  --blue-pale: #e8f1f8;
  --gold: #c9a567;
  --gold-light: #d9b97f;
  --gold-dark: #a78648;

  --charcoal: #2a2a2a;
  --slate: #4a5568;
  --slate-light: #6b7280;
  --cream: #f7f4ee;
  --white: #ffffff;
  --off-white: #fafbfc;
  --border: #e2e8f0;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --container: 1200px;
  --container-narrow: 900px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(26, 58, 92, 0.08);
  --shadow-md: 0 8px 24px rgba(26, 58, 92, 0.12);
  --shadow-lg: 0 16px 48px rgba(26, 58, 92, 0.18);
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold-dark);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.75rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

.serif { font-family: var(--font-serif); }
.gold { color: var(--gold-dark); }
.navy { color: var(--navy-deep); }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; letter-spacing: 0.12em; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  display: inline-block;
}

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

section { padding: 5rem 0; }
section.compact { padding: 3.5rem 0; }

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--slate);
  margin-top: 1rem;
}

/* Decorative divider */
.divider-gold {
  display: block;
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto 1.5rem;
  border: 0;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy-deep);
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand small {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 0.3rem;
}

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

.nav-list a {
  color: var(--charcoal);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.4rem 0;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--navy-deep);
}

.nav-list a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.nav-cta {
  background: var(--navy-deep);
  color: var(--white) !important;
  padding: 0.65rem 1.4rem !important;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.875rem !important;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy-deep);
  transition: transform 0.2s ease;
}

@media (max-width: 960px) {
  .menu-toggle { display: flex; }
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-list.open { display: flex; }
  .nav-list a { padding: 0.75rem 1rem; width: 100%; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none !important;
  line-height: 1;
}

.btn-primary {
  background: var(--navy-deep);
  color: var(--white) !important;
  border-color: var(--navy-deep);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-gold {
  background: var(--gold);
  color: var(--white) !important;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  color: var(--navy-deep) !important;
  border-color: var(--navy-deep);
}

.btn-outline:hover {
  background: var(--navy-deep);
  color: var(--white) !important;
}

.btn-outline-light {
  background: transparent;
  color: var(--white) !important;
  border-color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy-deep) !important;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-group.left { justify-content: flex-start; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  background: linear-gradient(135deg, #1a3a5c 0%, #234870 50%, #3d6a99 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(201, 165, 103, 0.15), transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(184, 212, 232, 0.15), transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero h1 .gold-text { color: var(--gold-light); }

.hero .lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero .eyebrow {
  color: var(--gold-light);
  letter-spacing: 0.2em;
}

.hero-book {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-book img {
  max-width: 380px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 8px 16px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  transform: perspective(1200px) rotateY(-8deg);
  transition: transform 0.4s ease;
}

.hero-book img:hover { transform: perspective(1200px) rotateY(-3deg); }

.bestseller-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.bestseller-badge {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 165, 103, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-light);
}

.bestseller-badge .num { color: var(--white); font-size: 0.95rem; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-book { order: -1; }
  .hero-book img { max-width: 280px; }
  .hero { padding: 3.5rem 0; }
}

/* ==========================================================================
   PAGE BANNERS (sub-page hero)
   ========================================================================== */
.page-banner {
  background: linear-gradient(135deg, #1a3a5c 0%, #234870 100%);
  color: var(--white);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gold);
}

.page-banner h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-banner .lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0.75rem auto 0;
}

.page-banner .eyebrow { color: var(--gold-light); }

/* ==========================================================================
   GENERIC SECTIONS
   ========================================================================== */
.bg-cream { background: var(--cream); }
.bg-pale { background: var(--blue-pale); }
.bg-navy { background: var(--navy-deep); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }

/* Two-column intro / story */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split.reverse > :first-child { order: 2; }

.split img { border-radius: 4px; box-shadow: var(--shadow-md); }

@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse > :first-child { order: 0; }
}

/* ==========================================================================
   FEATURE CARDS
   ========================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 2rem;
  border-radius: 2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card h3 {
  color: var(--navy-deep);
  font-size: 1.375rem;
}

.card p { color: var(--slate); margin: 0; }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ==========================================================================
   "INSIDE THE BOOK" - chapter list
   ========================================================================== */
.chapter-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.chapter-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
}

.chapter-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  min-width: 50px;
}

.chapter-body h4 {
  color: var(--navy-deep);
  margin-bottom: 0.4rem;
  font-size: 1.0625rem;
  font-family: var(--font-display);
  font-weight: 600;
}

.chapter-body p {
  font-size: 0.95rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.55;
}

/* ==========================================================================
   PULL QUOTE
   ========================================================================== */
.pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  line-height: 1.4;
  color: var(--navy-deep);
  font-weight: 500;
  font-style: italic;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 0;
  position: relative;
}

.pullquote::before,
.pullquote::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem auto;
}

.pullquote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 1rem;
}

/* ==========================================================================
   AUTHOR / ABOUT
   ========================================================================== */
.author-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: 2px;
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}

.credentials-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.credentials-list li {
  padding: 0.65rem 0 0.65rem 1.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  font-size: 0.95rem;
}

.credentials-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.875rem;
}

.credentials-list li:last-child { border-bottom: 0; }

/* ==========================================================================
   CTA BANDS
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, #1a3a5c 0%, #234870 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }

.cta-band p {
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.92);
}

.cta-band-gold {
  background: linear-gradient(135deg, #c9a567 0%, #a78648 100%);
}

.cta-band-cream {
  background: var(--cream);
  color: var(--charcoal);
}

.cta-band-cream h2 { color: var(--navy-deep); }
.cta-band-cream p { color: var(--slate); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-toc {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 2px;
  margin-bottom: 3rem;
}

.faq-toc h3 {
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.faq-toc ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem 1.5rem;
}

.faq-toc a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--charcoal);
  border-bottom: 1px dotted var(--border);
}

.faq-toc a:hover { color: var(--gold-dark); }

.faq-category {
  margin-bottom: 3.5rem;
  scroll-margin-top: 100px;
}

.faq-category h2 {
  color: var(--navy-deep);
  font-size: 1.875rem;
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-item summary {
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--navy-deep);
  font-size: 1rem;
  line-height: 1.4;
  transition: background 0.2s ease;
}

.faq-item summary:hover { background: var(--blue-pale); }

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

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-dark);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item[open] summary { background: var(--blue-pale); }

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--slate);
  line-height: 1.7;
}

.faq-answer p { margin-bottom: 0.85rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul, .faq-answer ol {
  padding-left: 1.5rem;
  margin: 0.75rem 0;
}
.faq-answer li { margin-bottom: 0.5rem; }
.faq-answer strong { color: var(--navy-deep); }

/* ==========================================================================
   CONTACT / CONSULT
   ========================================================================== */
.consult-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.consult-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 2px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  text-align: center;
}

.consult-card h3 {
  color: var(--navy-deep);
  font-family: var(--font-display);
}

.consult-card .location-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.consult-card address {
  font-style: normal;
  margin: 1rem 0;
  color: var(--slate);
  line-height: 1.7;
}

.consult-card .phone {
  display: block;
  font-family: var(--font-display);
  font-size: 1.625rem;
  color: var(--navy-deep);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

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

/* ==========================================================================
   ASSESSMENT BLOCK
   ========================================================================== */
.assessment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.assessment-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 2px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.assessment-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.assessment-card h3 {
  font-size: 1.25rem;
  color: var(--navy-deep);
}

.assessment-card p {
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   BESTSELLER GALLERY
   ========================================================================== */
.bestseller-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.bestseller-gallery img {
  border: 1px solid var(--border);
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
}

.bestseller-gallery img:hover { transform: scale(1.02); }

/* ==========================================================================
   IMAGERY BLOCKS (book lifestyle photos)
   ========================================================================== */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.lifestyle-grid img {
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #0f2540;
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-grid p,
.footer-grid li {
  font-size: 0.9375rem;
  line-height: 1.75;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-brand .brand { color: var(--white); margin-bottom: 1rem; }
.footer-brand .brand small { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

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

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.lead { font-size: 1.125rem; line-height: 1.7; color: var(--slate); }

/* Image with caption */
figure { margin: 2rem 0; }
figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: var(--slate-light);
  margin-top: 0.75rem;
  font-style: italic;
}
