:root {
    --bg: #05070d;
    --ink: #f4f0e6;
    --muted: #b7b1a3;
    --gold: #d4a84b;
    --gold-soft: rgba(212, 168, 75, 0.18);
    --crimson: #8b1e2d;
    --card: rgba(12, 16, 28, 0.78);
    --border: rgba(212, 168, 75, 0.28);
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    --radius: 16px;
    --max: 1100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    font-family: "Source Sans 3", system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
}

#battle-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-veil {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 50% 20%, rgba(212, 168, 75, 0.12), transparent 50%),
        linear-gradient(180deg, rgba(5, 7, 13, 0.35), rgba(5, 7, 13, 0.82) 70%, rgba(5, 7, 13, 0.95));
}

.site-main,
.site-footer {
    position: relative;
    z-index: 2;
}

.container {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
}
.container.narrow { width: min(100% - 2rem, 720px); }

.site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(14px);
    background: rgba(5, 7, 13, 0.92);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
    text-decoration: none;
}
.brand-mark {
    box-sizing: border-box;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-soft);
    border: 1px solid var(--border);
    color: var(--gold);
    line-height: 0;
    /* no system font glyph — SVG only */
    font-size: 0;
    -webkit-font-smoothing: antialiased;
}
.brand-mark .brand-cross-svg {
    display: block;
    width: 22px;
    height: 22px;
    overflow: visible;
    filter: drop-shadow(0 0 6px rgba(232, 197, 106, 0.35));
}
.brand:hover .brand-mark .brand-cross-svg {
    filter: drop-shadow(0 0 10px rgba(232, 197, 106, 0.55));
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.brand-text strong {
    font-family: Cinzel, serif;
    letter-spacing: 0.04em;
    font-size: 1.1em; /* 10% larger */
}


.brand-text small {
    color: var(--muted);
    font-size: 0.75rem;
}

.site-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
}
.site-nav a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
}
.site-nav a:hover { color: var(--gold); }
.nav-user {
    color: var(--muted);
    font-size: 0.95rem;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: transparent;
    padding: 10px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s ease;
    font-family: inherit;
    font-size: 0.95rem;
}
.btn-primary {
    background: linear-gradient(135deg, #c9922f, #e8c56a);
    color: #1a1205;
}
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost {
    background: transparent;
    border-color: var(--border);
    color: var(--ink);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.btn-gold {
    background: var(--gold-soft);
    border-color: var(--border);
    color: var(--gold);
}
.btn-block { width: 100%; }

.hero {
    padding: 4.5rem 0 3rem;
}
.hero-inner {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: var(--gold);
    margin: 0 0 1rem;
}
.hero h1 {
    font-family: Cinzel, serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.15;
    margin: 0 0 1rem;
}
.hero-verse {
    font-size: clamp(1.05rem, 2.4vw, 1.3rem);
    color: #efe7d4;
    max-width: 42rem;
    margin: 0 auto 0.5rem;
}
.hero-cite {
    color: var(--gold);
    font-weight: 700;
    margin: 0 0 1.75rem;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}
.hero-note {
    margin-top: 1.5rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.section { padding: 2.5rem 0 3.5rem; }
.section-alt {
    background: rgba(0, 0, 0, 0.28);
    border-block: 1px solid rgba(255, 255, 255, 0.04);
}
.section-head {
    margin-bottom: 1.5rem;
}
.section-head h1,
.section-head h2 {
    font-family: Cinzel, serif;
    margin: 0 0 0.4rem;
}
.section-head p {
    margin: 0;
    color: var(--muted);
}
.section-cta {
    margin-top: 1.25rem;
    text-align: center;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}
.card,
.auth-card,
.empty-card,
.post-full,
.file-row {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
}
.card {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.card h3 {
    font-family: Cinzel, serif;
    font-size: 1.15rem;
    margin: 0;
}
.card h3 a {
    color: inherit;
    text-decoration: none;
}
.card h3 a:hover { color: var(--gold); }
.card p { margin: 0; color: #ddd6c6; }
.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: var(--muted);
    font-size: 0.85rem;
}
.text-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    margin-top: auto;
}
.text-link:hover { text-decoration: underline; }

.file-list { display: grid; gap: 0.85rem; }
.file-row {
    padding: 1rem 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.file-row.compact { padding: 0.75rem 0; border: 0; box-shadow: none; background: transparent; border-bottom: 1px solid rgba(255,255,255,0.06); border-radius: 0; }
.file-row p { margin: 0.2rem 0; color: var(--muted); }
.file-row small { color: #8f8878; }

.empty-card {
    padding: 1.5rem;
    text-align: center;
    color: var(--muted);
}

.auth-section { padding-top: 3rem; }
.auth-card { padding: 1.75rem; }
.auth-card h1,
.auth-card h2 {
    font-family: Cinzel, serif;
    margin-top: 0;
}
.muted { color: var(--muted); }
.auth-foot { text-align: center; color: var(--muted); }
.auth-foot a { color: var(--gold); }

.form {
    display: grid;
    gap: 0.9rem;
}
.form label {
    display: grid;
    gap: 0.35rem;
    font-weight: 600;
    font-size: 0.92rem;
}
.form input,
.form textarea {
    width: 100%;
    padding: 0.8rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    color: var(--ink);
    font: inherit;
}
.form input:focus,
.form textarea:focus {
    outline: 2px solid rgba(212, 168, 75, 0.45);
    border-color: var(--gold);
}

.alert {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    margin: 1rem 0;
    border: 1px solid transparent;
}
.alert-success {
    background: rgba(46, 125, 50, 0.2);
    border-color: rgba(129, 199, 132, 0.4);
}
.alert-error {
    background: rgba(139, 30, 45, 0.25);
    border-color: rgba(229, 115, 115, 0.4);
}

.post-full { padding: 1.75rem; }
.post-full h1 {
    font-family: Cinzel, serif;
    margin: 0.4rem 0 1rem;
}
.post-body {
    color: #ebe4d4;
    margin-bottom: 1.5rem;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 2rem 0 2.5rem;
    margin-top: 1rem;
}
.footer-inner { text-align: center; }
.footer-verse {
    font-size: 0.98rem;
    color: #e7dfcd;
    max-width: 48rem;
    margin: 0 auto 0.75rem;
}
.footer-copy {
    color: var(--muted);
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 820px) {
    /*
     * Mobile-only: fixed header + fixed menu panel.
     * Sticky headers trap dropdowns under Audio Bible search on iOS/Android.
     */
    .site-header {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 10000 !important;
        overflow: visible !important;
        background: rgba(6, 4, 12, 0.96) !important;
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
    }
    .header-inner {
        position: relative;
        overflow: visible !important;
        z-index: 10001;
    }
    /* Offset page content below fixed header */
    body {
        padding-top: calc(72px + env(safe-area-inset-top, 0px));
    }
    .site-main,
    .site-footer {
        position: relative;
        z-index: 1 !important;
    }
    .tr-page,
    .tr-head,
    .tr-search-wrap,
    .tr-search,
    .tr-library,
    .tr-book-title {
        z-index: 1 !important;
    }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 10003;
    }

    .site-nav {
        display: none;
        position: fixed !important;
        top: calc(72px + env(safe-area-inset-top, 0px));
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        margin: 0;
        padding: 0.5rem 1rem 1rem;
        z-index: 10002 !important;
        box-sizing: border-box;
        background: rgba(6, 4, 12, 0.99) !important;
        border-bottom: 1px solid rgba(212, 168, 75, 0.3);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75);
        flex-direction: column;
        align-items: stretch;
        gap: 0.1rem;
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
    }
    .site-nav.open {
        display: flex !important;
    }
    .site-nav a {
        display: block;
        padding: 0.9rem 0.75rem;
        border-radius: 10px;
        font-size: 1.08rem;
        color: #f0e8d4 !important;
        background: transparent;
    }
    .site-nav a:hover,
    .site-nav a:active,
    .site-nav a.is-active {
        background: rgba(212, 168, 75, 0.14);
        color: #e8c56a !important;
    }
    .site-nav .btn { width: 100%; }
    .file-row {
        flex-direction: column;
        align-items: stretch;
    }
    .file-row .btn { width: 100%; }
    .hero { padding-top: 3rem; }

    /* Audio Bible panel height: header is fixed, so don't double-count weirdly */
    .tr-page {
        height: calc(100dvh - 72px - 3.5rem - env(safe-area-inset-top, 0px));
        max-height: calc(100dvh - 72px - 3.5rem - env(safe-area-inset-top, 0px));
        z-index: 0 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    #battle-bg { display: none; }
    body { background: #05070d; }
}

/* Epic battle background — lighter veil so animation shows through */
.bg-veil {
    background:
        radial-gradient(ellipse at 30% 15%, rgba(255, 200, 80, 0.08), transparent 45%),
        radial-gradient(ellipse at 70% 40%, rgba(120, 20, 40, 0.1), transparent 50%),
        linear-gradient(180deg, rgba(5, 7, 13, 0.15) 0%, rgba(5, 7, 13, 0.45) 55%, rgba(5, 7, 13, 0.88) 100%) !important;
}

#battle-bg {
    filter: contrast(1.08) saturate(1.15);
}

.card, .auth-card, .file-row, .empty-card, .post-full {
    background: rgba(8, 10, 18, 0.72) !important;
}
/* ===== Scripture verse ticker (bottom, one verse / minute) ===== */
body {
    padding-bottom: 7.5rem;
}

.verse-ticker {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    padding: 0.75rem 1rem 0.9rem;
    background: linear-gradient(180deg, rgba(4, 3, 10, 0.55), rgba(4, 3, 10, 0.94));
    border-top: 1px solid rgba(212, 168, 75, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.verse-ticker-inner {
    width: min(100% - 0.5rem, 920px);
    margin: 0 auto;
    text-align: center;
    min-height: 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.verse-ticker-label {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #d4a84b;
    font-weight: 700;
}

.verse-ticker-text {
    margin: 0;
    font-family: Cinzel, serif;
    font-size: clamp(0.92rem, 2.2vw, 1.12rem);
    line-height: 1.45;
    color: #f0e8d4;
    font-style: normal;
    max-width: 48rem;
    transition: opacity 0.4s ease;
}

.verse-ticker-ref {
    font-style: normal;
    font-size: 0.85rem;
    color: #d4a84b;
    font-weight: 700;
}

.verse-ticker-meta {
    font-size: 0.7rem;
    color: rgba(180, 170, 150, 0.7);
}

.verse-ticker.is-fading .verse-ticker-text,
.verse-ticker.is-fading .verse-ticker-ref {
    opacity: 0;
}

.verse-ticker.is-visible .verse-ticker-text,
.verse-ticker.is-visible .verse-ticker-ref {
    opacity: 1;
}

.site-footer {
    margin-bottom: 0;
    padding-bottom: 1.25rem;
}

@media (max-width: 600px) {
    body { padding-bottom: 8.5rem; }
    .verse-ticker { padding: 0.65rem 0.75rem 0.8rem; }
    .verse-ticker-text { font-size: 0.9rem; }
}

/* Screen-reader / SEO headings without changing layout */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* Home SEO content — readable for Google & visitors */
.seo-home {
    position: relative;
    z-index: 2;
    max-width: 40rem;
    margin: 4vh auto 2rem;
    padding: 1.35rem 1.4rem 1.5rem;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgba(212, 168, 75, 0.22);
    background: rgba(6, 4, 12, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.seo-home-title {
    margin: 0 0 0.65rem;
    font-family: Cinzel, serif;
    font-size: clamp(1.25rem, 3.2vw, 1.65rem);
    font-weight: 700;
    color: #f0e8d4;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.seo-home-lead,
.seo-home-text {
    margin: 0 0 0.75rem;
    color: rgba(235, 227, 210, 0.88);
    font-size: 0.98rem;
    line-height: 1.55;
}

.seo-home-points {
    margin: 0.9rem auto 1rem;
    padding: 0;
    list-style: none;
    text-align: left;
    max-width: 28rem;
    color: rgba(230, 220, 200, 0.82);
    font-size: 0.92rem;
    line-height: 1.5;
}

.seo-home-points li {
    position: relative;
    padding: 0.28rem 0 0.28rem 1.1rem;
}

.seo-home-points li::before {
    content: "✝";
    position: absolute;
    left: 0;
    color: #d4a84b;
    font-size: 0.75rem;
    top: 0.4rem;
}

.seo-home-cta {
    margin: 0.5rem 0 0;
}

.seo-home-link {
    color: #e8c56a;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(232, 197, 106, 0.35);
}

.seo-home-link:hover {
    color: #ffd070;
    border-bottom-color: rgba(255, 208, 112, 0.6);
}

@media (max-width: 600px) {
    .seo-home {
        margin-top: 2vh;
        padding: 1.1rem 1rem 1.2rem;
    }
    .seo-home-text,
    .seo-home-lead {
        font-size: 0.92rem;
    }
}


.footer-seo {
    color: rgba(180, 170, 150, 0.65);
}
.footer-seo a {
    color: rgba(212, 168, 75, 0.85);
    text-decoration: none;
}
.footer-seo a:hover {
    color: #e8c56a;
    text-decoration: underline;
}


/* Donations page */
.donate-page {
    position: relative;
    z-index: 2;
    max-width: 42rem;
    margin: 0 auto;
    padding: 2rem 0 3.5rem;
}

.donate-head {
    text-align: center;
    margin-bottom: 1.5rem;
}

.donate-title {
    margin: 0 0 0.5rem;
    font-family: Cinzel, serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #f0e8d4;
}

.donate-lead {
    margin: 0 auto;
    max-width: 32rem;
    color: rgba(220, 210, 190, 0.8);
    line-height: 1.5;
    font-size: 0.98rem;
}

.donate-card {
    padding: 1.25rem 1.35rem;
    border-radius: 14px;
    border: 1px solid rgba(212, 168, 75, 0.28);
    background: rgba(6, 4, 12, 0.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
}

.donate-card-title {
    margin: 0 0 0.5rem;
    font-family: Cinzel, serif;
    font-size: 1.1rem;
    color: #e8c56a;
}

.donate-card-text,
.donate-card-note {
    margin: 0 0 0.65rem;
    color: rgba(235, 227, 210, 0.88);
    line-height: 1.55;
    font-size: 0.96rem;
}

.donate-card-note {
    margin-bottom: 0;
    color: rgba(200, 190, 170, 0.65);
    font-size: 0.88rem;
}

.donate-seo {
    padding: 1.25rem 1.35rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(6, 4, 12, 0.4);
}

.donate-seo-title {
    margin: 0 0 0.75rem;
    font-family: Cinzel, serif;
    font-size: 1.15rem;
    color: #f0e8d4;
}

.donate-seo p {
    margin: 0 0 0.75rem;
    color: rgba(230, 220, 200, 0.85);
    line-height: 1.55;
    font-size: 0.95rem;
}

.donate-seo-list {
    margin: 0.5rem 0 1rem;
    padding-left: 1.15rem;
    color: rgba(225, 215, 195, 0.85);
    font-size: 0.92rem;
    line-height: 1.5;
}

.donate-seo-list li {
    margin-bottom: 0.3rem;
}

.donate-seo-cta {
    margin: 0.5rem 0 0;
    font-size: 0.92rem;
}

.donate-seo-cta a {
    color: #e8c56a;
    text-decoration: none;
    font-weight: 600;
}

.donate-seo-cta a:hover {
    color: #ffd070;
    text-decoration: underline;
}


/* Linked donation card */
a.donate-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
    cursor: pointer;
}
a.donate-card-link:hover,
a.donate-card-link:focus {
    border-color: rgba(212, 168, 75, 0.55);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(232, 197, 106, 0.15);
    outline: none;
}
a.donate-card-link .donate-card-note {
    color: #e8c56a;
    font-weight: 700;
}

/* How You Found Us (hidden page — linked from Donations box) */
.found-page {
    position: relative;
    z-index: 2;
    max-width: 42rem;
    margin: 0 auto;
    padding: 2rem 0 3.5rem;
}
.found-head {
    text-align: center;
    margin-bottom: 1.5rem;
}
.found-title {
    margin: 0 0 0.5rem;
    font-family: Cinzel, serif;
    font-size: clamp(1.45rem, 4vw, 2rem);
    color: #f0e8d4;
}
.found-lead {
    margin: 0 auto;
    max-width: 32rem;
    color: rgba(220, 210, 190, 0.8);
    line-height: 1.5;
    font-size: 0.98rem;
}
.found-card {
    padding: 1.25rem 1.35rem;
    border-radius: 14px;
    border: 1px solid rgba(212, 168, 75, 0.2);
    background: rgba(6, 4, 12, 0.58);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 1.15rem;
}
.found-card-title {
    margin: 0 0 0.65rem;
    font-family: Cinzel, serif;
    font-size: 1.08rem;
    color: #e8c56a;
}
.found-intro,
.found-card p {
    margin: 0 0 0.75rem;
    color: rgba(235, 227, 210, 0.88);
    line-height: 1.55;
    font-size: 0.95rem;
}
.found-thanks {
    border-color: rgba(212, 168, 75, 0.4);
}
.found-keywords {
    margin: 0.5rem 0 1rem;
    padding-left: 1.15rem;
    color: rgba(230, 220, 200, 0.9);
    font-size: 0.94rem;
    line-height: 1.55;
}
.found-keywords li {
    margin-bottom: 0.4rem;
}
.found-kw {
    color: #f0e8d4;
    font-weight: 700;
}
.found-keywords-block {
    margin: 0.75rem 0 0 !important;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
}
.found-keywords-block q,
.found-card q {
    color: #e8c56a;
    quotes: "“" "”";
}
.found-verse {
    margin: 0 0 1rem;
    padding: 0.75rem 0 0.75rem 0.9rem;
    border-left: 2px solid rgba(212, 168, 75, 0.45);
}
.found-verse p {
    margin: 0 0 0.35rem;
    font-family: Cinzel, serif;
    font-size: 0.95rem;
    color: #f0e8d4;
    line-height: 1.5;
}
.found-verse cite {
    display: block;
    font-style: normal;
    font-size: 0.82rem;
    font-weight: 700;
    color: #d4a84b;
    letter-spacing: 0.03em;
}
.found-back {
    margin: 0.85rem 0 0 !important;
    font-size: 0.9rem !important;
}
.found-back a {
    color: #e8c56a;
    text-decoration: none;
    font-weight: 600;
}
.found-back a:hover {
    color: #ffd070;
    text-decoration: underline;
}


/* When mobile menu is open */
@media (max-width: 820px) {
    body.body-nav-open {
        overflow: hidden;
        touch-action: none;
    }
    body.body-nav-open .site-main,
    body.body-nav-open .tr-page,
    body.body-nav-open .tr-search {
        pointer-events: none !important;
        user-select: none;
    }
    body.body-nav-open .site-header,
    body.body-nav-open .site-nav,
    body.body-nav-open .nav-toggle {
        pointer-events: auto !important;
    }
}


/* Donate menu item — quieter than other nav links */
.site-nav a.nav-donate {
    color: rgba(180, 170, 150, 0.42);
    font-weight: 500;
    font-size: 0.9em;
    letter-spacing: 0.02em;
}
.site-nav a.nav-donate:hover {
    color: rgba(212, 168, 75, 0.65);
}
.site-nav a.nav-donate.is-active {
    color: rgba(212, 168, 75, 0.55);
    border-bottom-color: rgba(212, 168, 75, 0.3);
}
