/* === VARIABLES === */
:root {
  --navy: #1a3a52;
  --navy-light: #1f4460;
  --navy-mid: #254e6e;
  --navy-dark: #142d42;
  --gold: #d4af37;
  --gold-light: #e0c45c;
  --gold-dark: #b8962e;
  --gold-pale: rgba(212, 175, 55, 0.08);
  --gold-glow: rgba(212, 175, 55, 0.15);
  --white: #ffffff;
  --bg: #f8f6f2;
  --bg-warm: #faf8f4;
  --bg-alt: #ffffff;
  --text: #2d2d2d;
  --text-light: #5a5a5a;
  --text-on-dark: #d4d4d4;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; }
ul { list-style: none; }

/* === DECORATIVE DIVIDER === */
.gold-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
  border: none;
}
.gold-divider-wide {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2.5rem auto;
  border: none;
}
.gold-divider-full {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
  margin: 3rem 0;
  border: none;
}

/* === NAVBAR === */
.navbar {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3), 0 1px 0 var(--gold-dark);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: 1rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 1.1rem;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 4px rgba(212, 175, 55, 0.2);
}
.nav-brand:hover { color: var(--gold-light); text-shadow: 0 1px 8px rgba(212, 175, 55, 0.4); }
.nav-brand-hebrew { font-size: 1.6rem; line-height: 1; }
.nav-links {
  display: flex;
  gap: 0;
  margin-left: auto;
}
.nav-links li { position: relative; }
.nav-links a {
  color: var(--text-on-dark);
  padding: 1.15rem 1rem;
  display: block;
  font-size: 0.93rem;
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: all var(--transition);
  transform: translateX(-50%);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* === SEARCH === */
.nav-search { position: relative; margin-left: 1rem; }
.nav-search input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  width: 200px;
  transition: all var(--transition);
  font-family: inherit;
}
.nav-search input::placeholder { color: rgba(212, 175, 55, 0.5); }
.nav-search input:focus {
  outline: none;
  border-color: var(--gold);
  width: 280px;
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}
.search-results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 400px;
  max-height: 500px;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: none;
  z-index: 100;
}
.search-results.active { display: block; }
.search-result-item {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #eee;
  display: block;
  color: var(--text);
  transition: background var(--transition);
}
.search-result-item:hover { background: var(--gold-pale); }
.search-result-type {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  background: var(--gold);
  color: var(--navy);
  font-weight: bold;
  margin-bottom: 0.3rem;
}
.search-result-title { font-weight: bold; font-size: 0.95rem; margin-bottom: 0.2rem; }
.search-result-snippet { font-size: 0.8rem; color: var(--text-light); line-height: 1.4; }
.search-result-page { font-size: 0.75rem; color: var(--gold-dark); font-style: italic; }
.search-no-results { padding: 1.5rem; text-align: center; color: var(--text-light); }

/* === HERO === */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 70%, var(--navy-mid) 100%);
  color: var(--white);
  text-align: center;
  padding: 6rem 1.5rem 5rem;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212, 175, 55, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-content { position: relative; max-width: 750px; }
.hero-hebrew {
  font-size: 5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  line-height: 1;
  text-shadow: 0 0 50px rgba(212, 175, 55, 0.3), 0 0 100px rgba(212, 175, 55, 0.1);
}
.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.15);
}
.hero-subtitle {
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.hero-message {
  color: var(--text-on-dark);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 1.5rem 3.5rem;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
  color: var(--gold);
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}
.page-hero p { color: var(--text-on-dark); font-size: 1.05rem; max-width: 700px; margin: 0 auto; line-height: 1.7; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  font-weight: bold;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}
.btn-secondary {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

/* === SECTIONS === */
.section { padding: 4rem 1.5rem; }
.section-warm { background: var(--bg-warm); }
.section-alt { background: var(--bg-alt); }
.section-cta {
  background: linear-gradient(160deg, var(--navy-dark), var(--navy), var(--navy-light));
  color: var(--white);
  padding: 5rem 1.5rem;
  position: relative;
}
.section-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-cta h2 {
  color: var(--gold);
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.section-cta p { color: var(--text-on-dark); }
.cta-verse { font-style: italic; }
.container { max-width: 1100px; margin: 0 auto; }
.center { text-align: center; }
.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  margin: 0.75rem auto 2rem;
}

/* === CARDS === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-top: 4px solid var(--gold);
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-pale) 0%, transparent 30%);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}
.card h3 { color: var(--navy); margin-bottom: 0.6rem; font-size: 1.15rem; position: relative; }
.card p { color: var(--text-light); font-size: 0.93rem; position: relative; }
.card-link { display: block; color: var(--text); }
.card-link:hover { color: var(--text); }

/* === FILTER BAR === */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.filter-btn {
  background: var(--white);
  border: 2px solid #ddd;
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: all var(--transition);
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.filter-btn.active {
  border-color: var(--gold);
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

/* === GLOSSARY === */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.glossary-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-left: 4px solid var(--gold);
}
.glossary-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}
.glossary-card.hidden { display: none; }
.glossary-header { margin-bottom: 0.6rem; }
.glossary-header h3 { color: var(--navy); font-size: 1.25rem; margin-bottom: 0.2rem; }
.glossary-category {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  font-weight: bold;
}
.glossary-card > p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 0.75rem; }
.glossary-tags, .evidence-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  display: inline-block;
  background: var(--gold-pale);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.78rem;
  color: var(--gold-dark);
}

/* === BIBLICAL EVIDENCE PAGE === */
.evidence-toc {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
}
.evidence-toc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.evidence-toc h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.evidence-toc ol {
  list-style: none;
  counter-reset: toc-counter;
  padding: 0;
}
.evidence-toc ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.5rem;
}
.evidence-toc ol li a {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.4rem 0.5rem;
  border-radius: 4px;
  color: var(--text);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.evidence-toc ol li a::before {
  content: counter(toc-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.6rem;
  height: 1.6rem;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
}
.evidence-toc ol li a:hover {
  background: var(--gold-pale);
  color: var(--gold-dark);
}

.evidence-section { margin-bottom: 1rem; }
.evidence-section-header {
  padding: 1.5rem 0 1rem;
  position: relative;
}
.evidence-section-header h2 {
  color: var(--gold-dark);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
}
.evidence-section-intro {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--gold-pale), rgba(212, 175, 55, 0.04));
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

.verse-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: all var(--transition);
}
.verse-card:hover {
  box-shadow: var(--shadow-md), var(--shadow-gold);
}
.verse-ref {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: bold;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}
.verse-text {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}
.verse-text .note {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--text-light);
  display: block;
  margin-top: 0.5rem;
}

/* === HISTORICALS === */
.scholar-header {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 3px solid var(--gold);
  position: relative;
}
.scholar-header::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gold-light);
}
.scholar-header h2 { color: var(--navy); font-size: 1.8rem; margin-bottom: 0.25rem; }
.scholar-source { color: var(--gold-dark); font-style: italic; font-size: 0.95rem; }
.kelly-header { margin-top: 4rem; }
.section-subtitle {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
  padding-left: 1rem;
  border-left: 4px solid var(--gold);
  position: relative;
}
.historical-section { margin-bottom: 2rem; }
.quotes-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: all var(--transition);
  position: relative;
}
.quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, var(--gold-pale), transparent 20%);
  border-radius: var(--radius);
  pointer-events: none;
}
.quote-card:hover {
  box-shadow: var(--shadow-md), var(--shadow-gold);
  transform: translateX(3px);
}
.quote-number {
  display: inline-block;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  padding: 0.2rem 0.7rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
}
.quote-card blockquote {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 0.85rem;
  font-style: italic;
  position: relative;
}
.quote-card cite {
  display: block;
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-style: normal;
  font-weight: bold;
  position: relative;
}

/* === DETAIL / CONTENT PAGES === */
.content-page { max-width: 800px; }
.content-page h2 {
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.5rem;
}
.source-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 1.5rem 0;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
  position: relative;
}
.source-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, var(--gold-pale), transparent 15%);
  border-radius: var(--radius);
  pointer-events: none;
}
.source-card h3 { color: var(--navy); margin-bottom: 0.75rem; font-size: 1.05rem; position: relative; }
.source-card p { position: relative; }
.belief-list { list-style: disc; padding-left: 1.5rem; margin: 1rem 0; }
.belief-list li { margin-bottom: 0.75rem; font-size: 0.95rem; }
.about-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* === FOOTER === */
.site-footer {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--text-on-dark);
  padding: 3.5rem 1.5rem 1.5rem;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-container { max-width: 1100px; margin: 0 auto; }
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section h3 {
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}
.footer-section p { font-size: 0.9rem; line-height: 1.6; }
.footer-section ul li { margin-bottom: 0.4rem; }
.footer-section a { color: var(--text-on-dark); font-size: 0.9rem; }
.footer-section a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-dark);
}

/* === 404 === */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-404 h1 { font-size: 4rem; color: var(--gold); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
  }
  .nav-links.active { display: flex; }
  .nav-links a { padding: 0.8rem 1.5rem; }
  .nav-links a::after { display: none; }
  .nav-links a.active { border-left: 3px solid var(--gold); }
  .nav-search { margin-left: auto; margin-right: 0.5rem; }
  .nav-search input { width: 130px; }
  .nav-search input:focus { width: 170px; }
  .search-results { width: calc(100vw - 2rem); right: -1rem; }

  .hero { padding: 4rem 1.5rem 3.5rem; min-height: auto; }
  .hero-hebrew { font-size: 3.5rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1.1rem; }

  .page-hero { padding: 3rem 1.5rem 2.5rem; }
  .page-hero h1 { font-size: 1.7rem; }

  .section { padding: 2.5rem 1rem; }
  .section-title { font-size: 1.4rem; }

  .card-grid, .glossary-grid { grid-template-columns: 1fr; }

  .evidence-toc { padding: 1.25rem; }
  .verse-card { padding: 1.25rem; }
  .quote-card { padding: 1.25rem; }
  .evidence-section-header h2 { font-size: 1.3rem; }

  .footer-content { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-hebrew { font-size: 2.5rem; }
  .hero h1 { font-size: 1.6rem; }
  .nav-brand-text { display: none; }
}
