   /* ===================== CSS VARIABLES ===================== */
    :root {
      --deep-brown: #2C1810;
      --dark-brown: #1a0e09;
      --mid-brown: #3d2418;
      --sacred-gold: #C9A84C;
      --light-gold: #E8C97A;
      --pale-gold: #f0dfa0;
      --burgundy: #6B1F2A;
      --dark-burgundy: #4a1520;
      --warm-cream: #F5EDD6;
      --off-white: #fdf8ee;
      --text-dark: #1a0e09;
      --text-muted: #7a6040;
      --shadow: rgba(44,24,16,0.35);
    }

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

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

    body {
      font-family: 'Lato', sans-serif;
      background: var(--deep-brown);
      color: var(--warm-cream);
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    h1,h2,h3,h4,h5 {
      font-family: 'Playfair Display', serif;
      line-height: 1.2;
    }

    /* ===================== READING PROGRESS BAR ===================== */
    #progress-bar {
      position: fixed;
      top: 0; left: 0;
      width: 0%;
      height: 3px;
      background: linear-gradient(90deg, var(--sacred-gold), var(--light-gold));
      z-index: 9999;
      transition: width 0.1s linear;
    }

    /* ===================== COOKIE BANNER ===================== */
    #cookie-banner {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      background: var(--dark-brown);
      border-top: 1px solid var(--sacred-gold);
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      z-index: 9998;
      font-size: 0.85rem;
      flex-wrap: wrap;
    }
    #cookie-banner p { color: var(--warm-cream); flex: 1; min-width: 200px; }
    #cookie-banner a { color: var(--sacred-gold); text-decoration: underline; }
    #cookie-accept {
      background: var(--sacred-gold);
      color: var(--deep-brown);
      border: none;
      padding: 8px 20px;
      border-radius: 4px;
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
    }

    /* ===================== BACK TO TOP ===================== */
    #back-to-top {
      position: fixed;
      bottom: 80px; right: 24px;
      width: 44px; height: 44px;
      background: var(--sacred-gold);
      color: var(--deep-brown);
      border: none;
      border-radius: 50%;
      font-size: 1.1rem;
      cursor: pointer;
      z-index: 999;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.3s, transform 0.3s;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px var(--shadow);
    }
    #back-to-top.visible { opacity: 1; transform: translateY(0); }

    /* ===================== HEADER & NAV ===================== */
    header {
      position: sticky;
      top: 3px;
      z-index: 900;
      background: var(--dark-brown);
      border-bottom: 1px solid rgba(201,168,76,0.3);
      box-shadow: 0 2px 20px rgba(0,0,0,0.5);
    }

    .header-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 32px;
      height: 70px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .logo-cross {
      font-size: 1.6rem;
      color: var(--sacred-gold);
    }
    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }
    .logo-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--sacred-gold);
      letter-spacing: 0.02em;
    }
    .logo-sub {
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--light-gold);
      opacity: 0.8;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .search-form {
      display: flex;
      align-items: center;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 24px;
      overflow: hidden;
      padding: 0 6px 0 14px;
    }
    .search-form input {
      background: none;
      border: none;
      outline: none;
      color: var(--warm-cream);
      font-family: 'Lato', sans-serif;
      font-size: 0.85rem;
      width: 160px;
      padding: 7px 0;
    }
    .search-form input::placeholder { color: rgba(245,237,214,0.45); }
    .search-form button {
      background: none;
      border: none;
      color: var(--sacred-gold);
      cursor: pointer;
      padding: 6px 8px;
      font-size: 0.85rem;
    }

    nav { display: flex; }
    nav ul {
      list-style: none;
      display: flex;
      gap: 2px;
    }
    nav ul li a {
      display: block;
      padding: 8px 13px;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--warm-cream);
      border-radius: 4px;
      transition: color 0.2s, background 0.2s;
    }
    nav ul li a:hover,
    nav ul li a.active {
      color: var(--sacred-gold);
      background: rgba(201,168,76,0.1);
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      color: var(--sacred-gold);
      font-size: 1.4rem;
      cursor: pointer;
    }

    /* ===================== AD BANNER (TOP) ===================== */
    .ad-banner {
      background: rgba(0,0,0,0.25);
      border-bottom: 1px solid rgba(201,168,76,0.1);
      text-align: center;
      padding: 10px;
      font-size: 0.75rem;
      color: rgba(245,237,214,0.4);
      letter-spacing: 0.08em;
    }
    .ad-placeholder {
      background: rgba(201,168,76,0.06);
      border: 1px dashed rgba(201,168,76,0.25);
      border-radius: 6px;
      padding: 18px 12px;
      text-align: center;
      font-size: 0.75rem;
      color: rgba(245,237,214,0.35);
      letter-spacing: 0.07em;
      margin: 0 auto;
    }

    /* ===================== HERO ===================== */
    #hero {
      position: relative;
      width: 100%;
      height: 600px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        rgba(13, 6, 4, 0.45),
        rgba(13, 6, 4, 0.45)
      ),
      url('./banner.png');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

    /* Decorative cross pattern overlay */
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(201,168,76,0.03) 49px, rgba(201,168,76,0.03) 50px),
        repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(201,168,76,0.03) 49px, rgba(201,168,76,0.03) 50px);
    }

    .hero-glow {
      position: absolute;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      animation: pulse-glow 4s ease-in-out infinite;
    }

    @keyframes pulse-glow {
      0%, 100% { opacity: 0.7; transform: translate(-50%,-50%) scale(1); }
      50% { opacity: 1; transform: translate(-50%,-50%) scale(1.1); }
    }

    /* Decorative crosses */
    .hero-cross-deco {
      position: absolute;
      font-size: 5rem;
      color: rgba(201,168,76,0.07);
      font-family: serif;
      user-select: none;
    }
    .hero-cross-deco.left { left: 6%; top: 50%; transform: translateY(-50%); font-size: 8rem; }
    .hero-cross-deco.right { right: 6%; top: 50%; transform: translateY(-50%); font-size: 8rem; }
    .hero-cross-deco.top-left { left: 12%; top: 12%; font-size: 3rem; }
    .hero-cross-deco.bottom-right { right: 12%; bottom: 12%; font-size: 3rem; }

    .hero-cross-deco svg {
        width: 1em;
        height: 1.67em;
        display: block;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 820px;
      padding: 0 24px;
      animation: hero-reveal 1.2s ease forwards;
    }

    @keyframes hero-reveal {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-label {
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--sacred-gold);
      margin-bottom: 18px;
      opacity: 0;
      animation: hero-reveal 1s ease 0.2s forwards;
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 900;
      color: var(--sacred-gold);
      text-shadow: 0 2px 40px rgba(201,168,76,0.4);
      line-height: 1.15;
      margin-bottom: 20px;
      opacity: 0;
      animation: hero-reveal 1s ease 0.4s forwards;
    }

    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: var(--warm-cream);
      opacity: 0;
      max-width: 560px;
      margin: 0 auto 36px;
      line-height: 1.7;
      font-weight: 300;
      animation: hero-reveal 1s ease 0.6s forwards;
    }

    .hero-divider {
      width: 80px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--sacred-gold), transparent);
      margin: 0 auto 28px;
      opacity: 0;
      animation: hero-reveal 1s ease 0.5s forwards;
    }

    .hero-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: hero-reveal 1s ease 0.8s forwards;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 30px;
      border-radius: 4px;
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      border: none;
      transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
    .btn-gold { background: var(--sacred-gold); color: var(--deep-brown); }
    .btn-dark { background: #0d2240; color: var(--warm-cream); }
    .btn-burgundy { background: var(--burgundy); color: var(--warm-cream); }
    .btn-outline {
      background: transparent;
      color: var(--sacred-gold);
      border: 1px solid var(--sacred-gold);
    }

    /* ===================== SECTION WRAPPER ===================== */
    .section { padding: 80px 32px; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-heading {
      text-align: center;
      margin-bottom: 52px;
    }
    .section-tag {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sacred-gold);
      margin-bottom: 10px;
      display: block;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 700;
    }
    .section-line {
      width: 64px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--sacred-gold), transparent);
      margin: 16px auto 0;
    }
    .cross-divider {
      --divider-color: var(--sacred-gold);
      display: flex;
      align-items: center;
      gap: 12px;
      width: min(360px, 100%);
      margin: 0 auto 16px;
    }
    .cross-divider-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--divider-color));
    }
    .cross-divider-line:last-child {
      background: linear-gradient(to left, transparent, var(--divider-color));
    }
    .cross-divider-spark {
      color: var(--divider-color);
      font-size: 0.8rem;
      line-height: 1;
    }
    .cross-divider-icon {
      display: block;
      width: 22px;
      height: 22px;
      filter: drop-shadow(0 0 3px rgba(201,168,76,0.7));
    }

    /* ===================== VERSE OF THE DAY ===================== */
    #verse-of-day {
      background: var(--warm-cream);
      color: var(--text-dark);
    }
    #verse-of-day .section-tag { color: var(--burgundy); }
    #verse-of-day .section-title { color: var(--deep-brown); }
    #verse-of-day .section-line { background: linear-gradient(90deg, transparent, var(--sacred-gold), transparent); }

    .verse-card {
      max-width: 760px;
      margin: 0 auto;
      background: var(--off-white);
      border: 1.5px solid var(--sacred-gold);
      border-radius: 8px;
      padding: 52px 56px;
      position: relative;
      box-shadow: 0 12px 48px rgba(44,24,16,0.12);
      text-align: center;
    }

    .verse-quote-mark {
      font-family: 'Playfair Display', serif;
      font-size: 6rem;
      color: var(--sacred-gold);
      line-height: 0.5;
      position: absolute;
      top: 28px; left: 32px;
      opacity: 0.7;
      user-select: none;
    }
    .verse-quote-mark.close {
      left: auto; right: 32px;
      top: auto; bottom: 28px;
    }

    .verse-date {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    .verse-text {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: clamp(1.25rem, 2.5vw, 1.65rem);
      color: var(--deep-brown);
      line-height: 1.75;
      margin-bottom: 24px;
    }

    .verse-ref {
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: var(--sacred-gold);
      text-transform: uppercase;
    }

    .verse-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
      margin-top: 28px;
      flex-wrap: wrap;
    }
    .verse-action-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 18px;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      border: 1.5px solid var(--sacred-gold);
      background: transparent;
      color: var(--deep-brown);
      font-family: 'Lato', sans-serif;
      transition: background 0.2s, color 0.2s;
    }
    .verse-action-btn:hover {
      background: var(--sacred-gold);
      color: var(--deep-brown);
    }
    .verse-action-btn i { font-size: 0.85rem; }

    /* ===================== TODAY'S REFLECTION ===================== */
    #reflection {
      background: #fff;
      color: var(--text-dark);
    }
    #reflection .section-title { color: var(--deep-brown); }
    #reflection .section-tag { color: var(--burgundy); }

    .reflection-card {
      max-width: 780px;
      margin: 0 auto;
      text-align: center;
    }
    .reflection-card-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.55rem, 3vw, 2rem);
      color: var(--deep-brown);
      margin: 0 0 18px;
      line-height: 1.25;
    }
    .reflection-body {
      font-size: 1.1rem;
      line-height: 1.85;
      color: #3a2512;
      margin-bottom: 28px;
    }
    .reflection-body + .reflection-body { margin-top: 16px; }
    .reading-time {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      color: var(--text-muted);
      letter-spacing: 0.08em;
      margin-bottom: 18px;
    }

    /* ===================== WATCH SECTION ===================== */
    #watch {
      background: var(--deep-brown);
    }
    .video-wrap {
      max-width: 780px;
      margin: 0 auto;
      text-align: center;
    }
    .video-embed {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      border-radius: 8px;
      border: 1.5px solid rgba(201,168,76,0.3);
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      margin-bottom: 22px;
    }
    .video-embed iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
    }
    .video-desc {
      color: var(--warm-cream);
      font-size: 1rem;
      line-height: 1.7;
      opacity: 0.85;
    }

    /* ===================== AD — BETWEEN CONTENT ===================== */
    .ad-mid {
      background: var(--mid-brown);
      padding: 24px;
      text-align: center;
    }

    /* ===================== LATEST VERSES GRID ===================== */
    #latest-verses {
      background: var(--deep-brown);
    }

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

    .verse-card-grid {
      background: var(--mid-brown);
      border: 1.5px solid rgba(201,168,76,0.35);
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    }
    .verse-card-grid:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(0,0,0,0.45);
      border-color: var(--sacred-gold);
    }

    .verse-card-img {
      height: 140px;
      background: linear-gradient(135deg, var(--dark-burgundy), var(--deep-brown));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      color: rgba(201,168,76,0.35);
      position: relative;
      overflow: hidden;
    }
    .verse-card-img::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, rgba(201,168,76,0.12), transparent 70%);
    }

    .verse-card-body {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .verse-card-category {
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--sacred-gold);
      margin-bottom: 8px;
    }
    .verse-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--light-gold);
      margin-bottom: 10px;
      line-height: 1.35;
    }
    .verse-card-excerpt {
      font-size: 0.9rem;
      color: rgba(245,237,214,0.7);
      line-height: 1.65;
      flex: 1;
      margin-bottom: 18px;
    }
    .read-more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--sacred-gold);
      border: 1px solid var(--sacred-gold);
      padding: 8px 16px;
      border-radius: 3px;
      align-self: flex-start;
      transition: background 0.2s, color 0.2s;
    }
    .read-more:hover {
      background: var(--sacred-gold);
      color: var(--deep-brown);
    }

    /* ===================== NEWSLETTER ===================== */
    #newsletter {
      background: var(--burgundy);
    }
    .newsletter-inner {
      max-width: 620px;
      margin: 0 auto;
      text-align: center;
    }
    #newsletter .section-title { color: var(--warm-cream); }
    .newsletter-sub {
      color: rgba(245,237,214,0.8);
      margin-bottom: 32px;
      font-size: 1rem;
      line-height: 1.65;
    }
    .newsletter-form {
      display: flex;
      gap: 10px;
      max-width: 500px;
      margin: 0 auto;
    }
    .newsletter-form input[type="email"] {
      flex: 1;
      padding: 14px 18px;
      background: rgba(255,255,255,0.12);
      border: 1.5px solid rgba(245,237,214,0.35);
      border-radius: 4px;
      color: var(--warm-cream);
      font-family: 'Lato', sans-serif;
      font-size: 0.95rem;
      outline: none;
      transition: border-color 0.2s;
    }
    .newsletter-form input[type="email"]:focus {
      border-color: var(--sacred-gold);
    }
    .newsletter-form input::placeholder { color: rgba(245,237,214,0.5); }
    .newsletter-privacy {
      font-size: 0.75rem;
      color: rgba(245,237,214,0.55);
      margin-top: 14px;
    }
    .newsletter-privacy a { color: var(--light-gold); text-decoration: underline; }

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

    /* Psalms Feature */
    #psalms-feature {
      background: linear-gradient(135deg, var(--dark-brown) 0%, var(--mid-brown) 100%);
    }
    .psalms-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .psalm-card {
      background: rgba(201,168,76,0.06);
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: 8px;
      padding: 28px 32px;
      transition: border-color 0.25s, background 0.25s;
    }
    .psalm-card:hover {
      border-color: var(--sacred-gold);
      background: rgba(201,168,76,0.1);
    }
    .psalm-num {
      font-size: 0.7rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--sacred-gold);
      margin-bottom: 10px;
    }
    .psalm-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--light-gold);
      margin-bottom: 10px;
    }
    .psalm-excerpt {
      font-size: 0.9rem;
      line-height: 1.65;
      color: rgba(245,237,214,0.7);
      font-style: italic;
    }

    /* Proverbs Feature */
    #proverbs-feature {
      background: var(--warm-cream);
      color: var(--text-dark);
    }
    #proverbs-feature .section-title { color: var(--deep-brown); }
    .proverbs-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .proverb-item {
      background: var(--off-white);
      border-left: 3px solid var(--sacred-gold);
      padding: 20px 22px;
      border-radius: 0 6px 6px 0;
      box-shadow: 0 4px 18px rgba(44,24,16,0.08);
    }
    .proverb-text {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 0.95rem;
      color: var(--deep-brown);
      line-height: 1.7;
      margin-bottom: 10px;
    }
    .proverb-ref {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: var(--sacred-gold);
    }

    /* Social proof stats */
    #stats {
      background: var(--deep-brown);
      padding: 56px 32px;
      border-top: 1px solid rgba(201,168,76,0.15);
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--sacred-gold);
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-label {
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(245,237,214,0.6);
    }

    /* Donation */
    #donate {
      background: linear-gradient(135deg, var(--dark-burgundy), var(--mid-brown));
      padding: 64px 32px;
    }
    .donate-inner {
      max-width: 680px;
      margin: 0 auto;
      text-align: center;
    }
    #donate .section-title { color: var(--warm-cream); margin-bottom: 16px; }
    .donate-sub {
      color: rgba(245,237,214,0.75);
      line-height: 1.7;
      margin-bottom: 32px;
    }
    .donate-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* ===================== FOOTER ===================== */
    footer {
      background: var(--dark-brown);
      border-top: 1px solid rgba(201,168,76,0.2);
    }

    /* Ad above footer */
    .ad-above-footer {
      background: var(--mid-brown);
      padding: 20px;
    }

    .footer-main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 32px 40px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
    }

    .footer-brand .logo-title { font-size: 1.5rem; margin-bottom: 6px; display: block; }
    .footer-brand p {
      font-size: 0.88rem;
      color: rgba(245,237,214,0.6);
      line-height: 1.7;
      margin-top: 12px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }
    .social-btn {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: rgba(201,168,76,0.12);
      border: 1px solid rgba(201,168,76,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--sacred-gold);
      font-size: 0.9rem;
      transition: background 0.2s, border-color 0.2s;
    }
    .social-btn:hover {
      background: var(--sacred-gold);
      color: var(--deep-brown);
      border-color: var(--sacred-gold);
    }

    .footer-col h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--sacred-gold);
      margin-bottom: 18px;
      font-weight: 700;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li {
      margin-bottom: 9px;
    }
    .footer-col ul li a {
      font-size: 0.875rem;
      color: rgba(245,237,214,0.6);
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--sacred-gold); }

    .footer-newsletter-mini input {
      width: 100%;
      padding: 9px 13px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 4px;
      color: var(--warm-cream);
      font-family: 'Lato', sans-serif;
      font-size: 0.82rem;
      outline: none;
      margin-bottom: 8px;
    }
    .footer-newsletter-mini input::placeholder { color: rgba(245,237,214,0.4); }
    .footer-newsletter-mini button {
      width: 100%;
      padding: 9px;
      background: var(--sacred-gold);
      color: var(--deep-brown);
      border: none;
      border-radius: 4px;
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size: 0.82rem;
      cursor: pointer;
      letter-spacing: 0.07em;
    }

    .footer-bottom {
      border-top: 1px solid rgba(201,168,76,0.12);
      padding: 20px 32px;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p {
      font-size: 0.8rem;
      color: rgba(245,237,214,0.45);
    }
    .footer-links {
      display: flex;
      gap: 20px;
    }
    .footer-links a {
      font-size: 0.8rem;
      color: rgba(245,237,214,0.45);
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--sacred-gold); }

    /* ===================== MOBILE NAV ===================== */
    #mobile-nav {
      display: none;
      background: var(--dark-brown);
      padding: 16px 24px;
      border-top: 1px solid rgba(201,168,76,0.15);
    }
    #mobile-nav.open { display: block; }
    #mobile-nav ul { list-style: none; }
    #mobile-nav ul li a {
      display: block;
      padding: 11px 0;
      color: var(--warm-cream);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      border-bottom: 1px solid rgba(201,168,76,0.1);
    }
    #mobile-nav ul li a:hover { color: var(--sacred-gold); }

    /* ===================== TOAST NOTIFICATION ===================== */
    #toast {
      position: fixed;
      bottom: 90px; right: 24px;
      background: var(--sacred-gold);
      color: var(--deep-brown);
      padding: 12px 20px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 0.88rem;
      z-index: 9997;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.3s, transform 0.3s;
      pointer-events: none;
    }
    #toast.show { opacity: 1; transform: translateY(0); }

    /* ===================== SCROLL REVEAL ===================== */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 1260px) {
      .verses-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-main { grid-template-columns: 1fr 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      nav { display: none; }
      .hamburger { display: flex; }
    }
    @media (max-width: 768px) {
      .header-top { padding: 0 18px; }
      .search-form { display: none; }
      .section { padding: 56px 20px; }
      .psalms-grid { grid-template-columns: 1fr; }
      .proverbs-list { grid-template-columns: 1fr; }
      .verses-grid { grid-template-columns: 1fr; }
      .verse-card { padding: 36px 24px; }
      .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px 30px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .newsletter-form { flex-direction: column; }
      #hero { height: 520px; }
      .hero-cross-deco.left, .hero-cross-deco.right { display: none; }
    }
    @media (max-width: 480px) {
      .hero-title { font-size: 1.85rem; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
    }
