:root {
  --crimson-deep: #4a0e0e;
  --crimson: #7a1f1f;
  --crimson-light: #9c2a2a;
  --gold: #d4a857;
  --gold-light: #f0c75a;
  --gold-dark: #9c7a2e;
  --cream: #f5e6b8;
  --parchment: #1a1410;
  --parchment-light: #2a2018;
  --ink: #f5e6c8;
  --ink-dim: #c9b88a;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--parchment);
  color: var(--ink);
  line-height: 1.7;
  font-size: 19px;
  overflow-x: hidden;
}

/* Subtle parchment texture using gradient */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(122, 31, 31, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(212, 168, 87, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
}

.site-main {
  position: relative;
  z-index: 1;
}

.content-column {
  min-width: 0;
}

/* ============ HEADER / HERO ============ */
.hero {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(180px, 340px) minmax(320px, 680px);
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  text-align: left;
  padding: 0 40px;
  z-index: 1;
}

.hero-logo {
  width: min(260px, 24vw);
  height: auto;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.6));
  animation: rise 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero .verse {
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.42rem);
  max-width: 640px;
  margin: 0 0 0 auto;
  color: var(--cream);
  text-align: right;
  animation: rise 1.4s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero .verse cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-family: 'Cinzel', serif;
  font-size: 0.75em;
  letter-spacing: 0.2em;
  color: var(--gold);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ DIVIDER ============ */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: -44px auto -8px;
  max-width: 600px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider svg {
  width: 30px;
  height: 30px;
  fill: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 20px 0;
    text-align: center;
  }

  .hero-logo {
    width: min(220px, 72vw);
    margin: 0 auto;
  }

  .hero .verse {
    margin: -2px auto 0;
    text-align: center;
    font-size: 1.08rem;
  }

  .divider {
    margin: 8px auto 8px;
  }

  .cant-offer {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .protection-table {
    min-width: 320px;
  }
}

/* ============ SECTION HEADERS ============ */
.section-eyebrow {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}

h2 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 30px;
  line-height: 1.2;
}

h3 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

/* ============ MAIN CONTENT (MESSAGE) ============ */
.message p {
  margin-bottom: 22px;
  font-size: 1.15rem;
  color: var(--ink);
}

.message p.lead {
  font-size: 1.45rem;
  color: var(--cream);
  font-weight: 500;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 30px 0;
  font-style: italic;
}

.cant-offer {
  background: linear-gradient(135deg, rgba(74, 14, 14, 0.4), rgba(122, 31, 31, 0.2));
  border: 1px solid rgba(212, 168, 87, 0.3);
  padding: 22px 24px;
  margin: 24px 0;
  border-radius: 4px;
}

.cant-offer h3 {
  margin-bottom: 14px;
}

.protection-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 16px;
  font-size: 1rem;
}

.protection-table th {
  font-family: 'Cinzel', serif;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(212, 168, 87, 0.35);
  padding: 0 12px 8px;
  text-transform: uppercase;
}

.protection-table td {
  width: 50%;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(212, 168, 87, 0.12);
  color: var(--ink);
  vertical-align: top;
}

.mark-x,
.mark-check {
  display: inline-block;
  width: 1.25em;
  font-family: 'Cinzel', serif;
  font-weight: 900;
}

.mark-x {
  color: var(--crimson-light);
}

.mark-check {
  color: var(--gold-light);
}

.but-jesus {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 900;
  text-align: center;
  margin: 14px 0 4px;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  text-shadow: 0 0 30px rgba(212, 168, 87, 0.4);
}

.but-jesus-sub {
  text-align: center;
  font-style: italic;
  color: var(--ink-dim);
  font-size: 1.02rem;
  margin-bottom: 0;
}

blockquote.scripture {
  background: rgba(212, 168, 87, 0.06);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream);
  position: relative;
}

blockquote.scripture cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold);
}

/* ============ SIDEBAR — AREAS OF PROTECTION ============ */
.areas {
  position: sticky;
  top: 12px;
  align-self: start;
  max-height: calc(100vh - 24px);
  overflow-y: auto;
}

/* Desktop: show full label, hide short label */
.nav-label-short { display: none; }

@media (max-width: 991.98px) {
  .areas {
    position: static;
    max-height: none;
    overflow: visible;
    margin-top: 0;
    margin-bottom: 16px;
  }

  .areas-card {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 6px;
    gap: 2px;
    width: 100%;
    box-sizing: border-box;
  }

  .areas-card::-webkit-scrollbar {
    display: none;
  }

  .areas h2,
  .areas-sub {
    display: none;
  }

  .nav-label { display: none; }
  .nav-label-short { display: block; }

  .area-link {
    flex: 0 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    padding: 8px 2px 6px;
    margin: 0;
    text-align: center;
    white-space: nowrap;
    font-size: 0.6rem;
    line-height: 1;
    border-left: none;
    border-bottom: 2px solid transparent;
    border-radius: 4px;
  }

  .area-link.active {
    border-bottom-color: var(--gold-light);
    border-left-color: transparent;
  }

  .area-link:hover {
    transform: none;
  }

  .area-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
}

.areas-card {
  background: linear-gradient(180deg, rgba(74, 14, 14, 0.5), rgba(26, 20, 16, 0.7));
  border: 1px solid rgba(212, 168, 87, 0.3);
  border-radius: 4px;
  padding: 24px 22px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.areas h2 {
  font-size: 1.5rem;
  margin-bottom: 4px;
  text-align: center;
}

.areas-sub {
  text-align: center;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-dim);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212, 168, 87, 0.2);
}

.area-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 12px;
  margin: 4px -12px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--cream);
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
  cursor: pointer;
}

.area-link:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.area-link:hover {
  background: rgba(212, 168, 87, 0.08);
  border-left-color: var(--gold);
  transform: translateX(4px);
}

.area-link.active {
  background: rgba(212, 168, 87, 0.14);
  border-left-color: var(--gold-light);
  color: var(--gold-light);
}

.area-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  fill: var(--gold);
}

/* ============ AREAS DETAIL SECTIONS ============ */
.areas-detail {
  margin: 0 auto;
  max-width: 900px;
}

.area-section {
  margin-bottom: 48px;
  scroll-margin-top: 30px;
}

.area-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212, 168, 87, 0.25);
}

.area-section-header svg {
  width: 48px;
  height: 48px;
  fill: var(--gold);
  flex-shrink: 0;
}

.area-section-header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.bible-story {
  background: rgba(122, 31, 31, 0.12);
  border: 1px solid rgba(212, 168, 87, 0.2);
  border-radius: 4px;
  padding: 24px 28px;
  margin: 20px 0;
}

.bible-story h4 {
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.bible-story p {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.bible-story .ref {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 6px;
}

/* ============ VERSES SECTION ============ */
.verses-section {
  background: linear-gradient(180deg, rgba(74, 14, 14, 0.3), rgba(26, 20, 16, 0.6));
  border-top: 1px solid rgba(212, 168, 87, 0.3);
  border-bottom: 1px solid rgba(212, 168, 87, 0.3);
  padding: 40px 0;
  margin: 0;
}

.verses-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.verses-section .subtitle {
  text-align: center;
  font-style: italic;
  color: var(--ink-dim);
  margin-bottom: 50px;
  font-size: 1.15rem;
}

.verses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.verse-card {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(212, 168, 87, 0.25);
  border-radius: 4px;
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.verse-card::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 10px;
  font-size: 8rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}

.verse-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.verse-card h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  position: relative;
}

.verse-card p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  position: relative;
}

.verse-card .ref {
  display: block;
  margin-top: 14px;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-style: normal;
}

/* PSALM 91 FEATURED */
.psalm-91 {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(74, 14, 14, 0.5), rgba(122, 31, 31, 0.3));
  border: 2px solid var(--gold);
  padding: 40px 38px;
}

.psalm-91 h3 {
  font-size: 1.6rem;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 20px;
}

.psalm-91 p {
  font-size: 1.1rem;
  line-height: 1.9;
}

/* ============ CALL TO ACTION ============ */
.cta {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.cta-logo {
  width: 200px;
  margin: 0 auto 30px;
  filter: drop-shadow(0 10px 30px rgba(212, 168, 87, 0.2));
}

.cta h2 {
  margin-bottom: 20px;
}

.cta-intro {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--cream);
  max-width: 700px;
  margin: 0 auto 40px;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 40px auto;
}

.cta-item {
  background: rgba(212, 168, 87, 0.05);
  border: 1px solid rgba(212, 168, 87, 0.3);
  padding: 24px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.cta-item:hover {
  background: rgba(212, 168, 87, 0.12);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.cta-item svg {
  width: 44px;
  height: 44px;
  fill: var(--gold);
  margin-bottom: 10px;
}

.cta-item span {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--cream);
}

.cta-button {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  padding: 18px 42px;
  margin-top: 30px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--parchment);
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(212, 168, 87, 0.3);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 168, 87, 0.5);
}

.cta-intro-spaced {
  margin-top: 50px;
}

.cta-save-note {
  margin-top: 16px;
  color: var(--ink-dim);
  font-size: 0.95rem;
}

/* ============ FOOTER ============ */
footer {
  padding: 60px 24px 40px;
  border-top: 1px solid rgba(212, 168, 87, 0.2);
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

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

footer p {
  color: var(--ink-dim);
  font-style: italic;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-align: right;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--ink-dim);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a.active {
  color: var(--gold-light);
}

footer .domain {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  margin-top: 20px;
}

.footer-ref {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-top: 8px;
}

.footer-note {
  margin-top: 20px;
  font-size: 0.85rem;
}

/* Decorative cross flourish */
.cross-flourish {
  display: inline-block;
  margin: 0 8px;
  color: var(--gold);
}

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

  .footer-links {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 17px;
  }
}
