/* ============================================================
   TASTE OF TRUTH — Joe Stumpf Authority Site
   Design: Warm leather, gold, deep earth tones
   ============================================================ */

:root {
  --leather-dark: #3B1F0E;
  --leather-mid: #6B3A1F;
  --leather-light: #A0632A;
  --gold: #C9A44A;
  --gold-light: #E8C97A;
  --cream: #F5EDD8;
  --cream-dark: #EAD9B8;
  --text-dark: #1A0F06;
  --text-mid: #3D2410;
  --text-light: #6B4A2A;
  --white: #FFFDF8;
  --shadow-deep: rgba(27, 12, 3, 0.4);
  --shadow-mid: rgba(27, 12, 3, 0.2);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Crimson Text', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--leather-dark); }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(27, 12, 3, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 164, 74, 0.25);
  padding: 14px 0;
  transition: all 0.3s ease;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-brand {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.header-brand span {
  color: var(--cream);
  font-weight: 400;
  font-size: 0.85rem;
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1px;
}

nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

nav a {
  color: rgba(245, 237, 216, 0.75);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  transition: all 0.2s;
}
nav a:hover { color: var(--gold); background: rgba(201, 164, 74, 0.12); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--leather-dark) !important;
  border-radius: 4px;
  padding: 7px 16px !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107, 58, 31, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(60, 30, 12, 0.4) 0%, transparent 55%),
    linear-gradient(160deg, #1A0D05 0%, #2C1608 40%, #3B1F0E 70%, #1A0D05 100%);
  padding: 100px 32px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(201, 164, 74, 0.025) 60px, rgba(201, 164, 74, 0.025) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(201, 164, 74, 0.015) 80px, rgba(201, 164, 74, 0.015) 81px);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { }

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 18px;
  font-weight: 900;
}

.hero-title em {
  color: var(--gold);
  font-style: normal;
  display: block;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.55);
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(245, 237, 216, 0.8);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--leather-dark);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 3px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); color: var(--leather-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201, 164, 74, 0.3); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 3px;
  border: 1px solid rgba(245, 237, 216, 0.25);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ============================================================
   BOOK COVER
   ============================================================ */

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

.book-wrapper {
  position: relative;
  transform-style: preserve-3d;
  animation: bookFloat 6s ease-in-out infinite;
}

@keyframes bookFloat {
  0%, 100% { transform: translateY(0) rotateY(-8deg) rotateX(2deg); }
  50% { transform: translateY(-16px) rotateY(-6deg) rotateX(1deg); }
}

.book-cover-img {
  width: 300px;
  border-radius: 4px 12px 12px 4px;
  box-shadow:
    -6px 0 0 rgba(0,0,0,0.4),
    -12px 4px 0 rgba(0,0,0,0.25),
    0 20px 60px rgba(0,0,0,0.6),
    0 0 80px rgba(201, 164, 74, 0.15);
  display: block;
}

.book-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(201, 164, 74, 0.35) 0%, transparent 70%);
  filter: blur(15px);
}

/* ============================================================
   STATS STRIP
   ============================================================ */

.stats-strip {
  background: var(--leather-dark);
  border-top: 1px solid rgba(201, 164, 74, 0.2);
  border-bottom: 1px solid rgba(201, 164, 74, 0.2);
  padding: 40px 32px;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px 24px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(201, 164, 74, 0.2);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.55);
  font-weight: 500;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section {
  padding: 100px 32px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--leather-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  color: var(--leather-dark);
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-quote {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--cream);
  border-radius: 0 8px 8px 0;
}

.about-quote p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--leather-dark);
  line-height: 1.5;
  margin: 0;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.credential-card {
  background: var(--cream);
  border: 1px solid rgba(107, 58, 31, 0.12);
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.2s;
}

.credential-card:hover {
  border-color: rgba(201, 164, 74, 0.4);
  box-shadow: 0 4px 20px var(--shadow-mid);
  transform: translateX(4px);
}

.credential-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.credential-content h4 {
  font-size: 1rem;
  color: var(--leather-dark);
  margin-bottom: 4px;
}

.credential-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   TASTES (BOOK PARTS)
   ============================================================ */

.tastes-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.tastes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.taste-card {
  background: var(--white);
  border: 1px solid rgba(107, 58, 31, 0.1);
  border-top: 3px solid var(--gold);
  border-radius: 2px 2px 8px 8px;
  padding: 32px 28px;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.taste-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 164, 74, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.taste-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow-mid);
  border-top-color: var(--leather-mid);
}

.taste-num {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.taste-title {
  font-size: 1.1rem;
  color: var(--leather-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}

.taste-excerpt {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   CHAPTERS
   ============================================================ */

.chapters-section {
  background: var(--white);
}

.chapters-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 240px;
  padding: 12px 20px;
  background: var(--cream);
  border: 1px solid rgba(107, 58, 31, 0.2);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}
.search-input::placeholder { color: rgba(107, 74, 42, 0.5); }
.search-input:focus { border-color: var(--gold); }

.filter-btns { display: flex; gap: 8px; flex-wrap: wrap; }

.filter-btn {
  padding: 10px 18px;
  background: var(--cream);
  border: 1px solid rgba(107, 58, 31, 0.2);
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--leather-dark);
  border-color: var(--leather-dark);
  color: var(--gold);
}

.chapters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.chapter-card {
  background: var(--cream);
  border: 1px solid rgba(107, 58, 31, 0.1);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}

.chapter-card:hover {
  border-color: rgba(201, 164, 74, 0.4);
  box-shadow: 0 6px 24px var(--shadow-mid);
  transform: translateY(-2px);
}

.chapter-card-header {
  padding: 20px 22px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.chapter-num-badge {
  background: var(--leather-dark);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 3px;
}

.chapter-card-title {
  font-size: 1rem;
  font-family: var(--font-display);
  color: var(--leather-dark);
  line-height: 1.3;
}

.chapter-card-preview {
  padding: 0 22px 20px;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  display: none;
  border-top: 1px solid rgba(107, 58, 31, 0.1);
  margin-top: 0;
  padding-top: 16px;
}

.chapter-card.expanded .chapter-card-preview {
  display: block;
}

.chapter-card-footer {
  padding: 12px 22px;
  background: rgba(107, 58, 31, 0.04);
  border-top: 1px solid rgba(107, 58, 31, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chapter-toggle {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chapter-arrow {
  transition: transform 0.2s;
  display: inline-block;
}

.chapter-card.expanded .chapter-arrow { transform: rotate(180deg); }

/* ============================================================
   LOAD MORE
   ============================================================ */

.load-more-area {
  text-align: center;
  margin-top: 20px;
}

/* ============================================================
   WISDOM SECTION
   ============================================================ */

.wisdom-section {
  background: linear-gradient(165deg, var(--leather-dark) 0%, #0E0604 100%);
  position: relative;
  overflow: hidden;
}

.wisdom-section::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: 40px;
  font-family: Georgia, serif;
  font-size: 400px;
  color: rgba(201, 164, 74, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.wisdom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.wisdom-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 164, 74, 0.15);
  border-radius: 8px;
  padding: 36px 32px;
  transition: all 0.25s;
}

.wisdom-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 164, 74, 0.35);
  transform: translateY(-3px);
}

.wisdom-card p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}

.wisdom-source {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wisdom-source::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  background: var(--cream-dark);
  padding: 100px 32px;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.8rem;
  color: var(--leather-dark);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--leather-dark);
  color: rgba(245, 237, 216, 0.6);
  padding: 60px 32px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201, 164, 74, 0.15);
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-brand .subtitle {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.4);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 360px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(245, 237, 216, 0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.8rem; }

.schema-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 164, 74, 0.1);
  border: 1px solid rgba(201, 164, 74, 0.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 600;
}

/* ============================================================
   MODAL
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 2, 0.88);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(6px);
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: 10px;
  max-width: 760px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
}

.modal-header {
  padding: 28px 36px 24px;
  border-bottom: 1px solid rgba(107, 58, 31, 0.12);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background: var(--cream);
}

.modal-header-info { }

.modal-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.modal-title {
  font-size: 1.6rem;
  color: var(--leather-dark);
  line-height: 1.2;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
  flex-shrink: 0;
  line-height: 1;
}
.modal-close:hover { background: var(--cream-dark); color: var(--leather-dark); }

.modal-body {
  padding: 32px 36px;
  overflow-y: auto;
  flex: 1;
}

.modal-body p {
  color: var(--text-mid);
  margin-bottom: 18px;
  line-height: 1.85;
  font-size: 1.05rem;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

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

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-book { order: -1; }
  .book-cover-img { width: 220px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .tastes-grid { grid-template-columns: repeat(2, 1fr); }
  .wisdom-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .hero { padding: 90px 20px 60px; }
  .section { padding: 70px 20px; }
  .tastes-grid { grid-template-columns: 1fr; }
  .chapters-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .header-inner { padding: 0 20px; }
  nav { display: none; }
  .hero-title { font-size: 2.8rem; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .modal-header { padding: 20px 22px; }
  .modal-body { padding: 22px; }
}

/* Smooth font loading */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Inter:wght@400;500;600;700;800&display=swap');
