/* =========================================================
   NTCG LifeBuilders — Men's Ministry
   ========================================================= */


/* ── Brand Tokens ─────────────────────────────────────── */
:root {
    --lb-gold:    #f7c70c;
    --lb-teal:    #0facb2;
    --lb-dark:    #30373b;
    --lb-darker:  #1a1f23;
    --lb-mid:     #2c3337;
    --lb-light:   #f3f3f5;
    --lb-text:    #1a212a;
    --lb-muted:   #6b7280;
    --lb-white:   #ffffff;
    --lb-font:    'Figtree', -apple-system, sans-serif;
}

/* ── Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    font-family: var(--lb-font);
    color: var(--lb-text);
    background: var(--lb-white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ── Hero ─────────────────────────────────────────────── */
.lb-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
    background: var(--lb-darker);
}

.lb-hero__bg {
    position: absolute;
    inset: 0;
    background-image: var(--lb-hero-image, none);
    background-size: cover;
    background-position: center top;
    opacity: 0.35;
    transform: scale(1.1);
    transition: opacity 0.6s ease;
}

.lb-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(17, 20, 24, 0.5) 0%,
        rgba(17, 20, 24, 0.2) 40%,
        rgba(17, 20, 24, 0.85) 100%
    );
}

.lb-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 40px;
    max-width: 780px;
}

.lb-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lb-gold);
    margin-bottom: 16px;
}

.lb-hero__eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--lb-gold);
    flex-shrink: 0;
}

.lb-hero__title {
    font-size: clamp(3.2rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    color: var(--lb-white);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.lb-hero__tagline {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 40px;
    line-height: 1.6;
    max-width: 520px;
}

.lb-hero__tagline-headline {
    display: block;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lb-white);
    margin-bottom: 10px;
}

.lb-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Buttons ──────────────────────────────────────────── */
.lb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: var(--lb-font);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.15s;
    text-decoration: none;
}

.lb-btn:hover { transform: translateY(-1px); }

.lb-btn--primary {
    background: var(--lb-gold);
    color: var(--lb-dark);
    border-color: var(--lb-gold);
}

.lb-btn--primary:hover {
    background: #fdd835;
    border-color: #fdd835;
}

.lb-btn--outline {
    background: transparent;
    color: var(--lb-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.lb-btn--outline:hover {
    border-color: var(--lb-white);
    background: rgba(255, 255, 255, 0.08);
}

/* ── Section Layout ───────────────────────────────────── */
.lb-section {
    padding: 80px 40px;
}

.lb-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Intro Section ────────────────────────────────────── */
.lb-intro {
    background: var(--lb-white);
    padding: 0 0 80px;
}

.lb-intro__stripe {
    height: 5px;
    background: linear-gradient(
        to right,
        #f7c70c 0% 20%,
        #0facb2 20% 40%,
        #3a9ecf 40% 60%,
        #d42769 60% 80%,
        #7c3aed 80% 100%
    );
    margin-bottom: 72px;
}

.lb-intro__body {
    text-align: center;
}

.lb-intro__heading {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: #9ca3af;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.lb-intro__brand {
    color: var(--lb-gold);
    font-weight: 800;
}

.lb-intro__tagline {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: #9ca3af;
    margin: 0 0 40px;
    letter-spacing: 0.02em;
}

.lb-intro__text {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.75;
    color: #374151;
    max-width: 760px;
    margin: 0 auto 32px;
}

.lb-intro__text em {
    font-style: italic;
    color: var(--lb-dark);
    font-weight: 600;
}

.lb-intro__quote {
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    border: none;
}

.lb-intro__quote p {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    font-style: italic;
    color: #6b7280;
    line-height: 1.75;
    margin: 0 0 10px;
}

.lb-intro__quote cite {
    font-size: 0.875rem;
    font-style: italic;
    color: #9ca3af;
}

/* ── Vision headline (inside LIFE section) ────────────── */
.lb-life-vision {
    margin-bottom: 48px;
}

.lb-vision__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lb-gold);
    background: var(--lb-dark);
    display: inline-block;
    padding: 4px 10px;
    border-radius: 3px;
    margin: 0 0 16px;
}

.lb-vision__heading {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--lb-dark);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    max-width: 600px;
}

.lb-vision__life-word {
    color: var(--lb-teal);
}

.lb-vision__sub {
    font-size: 1rem;
    color: var(--lb-muted);
    margin: 0;
    max-width: 520px;
    line-height: 1.65;
}

/* ── LIFE Acronym ─────────────────────────────────────── */
.lb-life {
    background: #f9f9fb;
    padding: 80px 40px;
}

.lb-life-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 48px;
}

.lb-life-btn {
    background: var(--lb-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 28px 20px 24px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: background 0.2s ease, border-color 0.2s ease,
                box-shadow 0.2s ease, transform 0.15s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.lb-life-btn:hover,
.lb-life-btn.is-active {
    background: #fffdf0;
    border-color: var(--lb-gold);
    box-shadow: 0 6px 28px rgba(247, 199, 12, 0.18);
    transform: translateY(-3px);
}

.lb-life-btn__letter {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(0, 0, 0, 0.12);
    letter-spacing: -0.03em;
    transition: color 0.2s ease;
}

.lb-life-btn:hover .lb-life-btn__letter,
.lb-life-btn.is-active .lb-life-btn__letter {
    color: var(--lb-gold);
}

.lb-life-btn__word {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: transparent;
    transition: color 0.2s ease;
}

.lb-life-btn:hover .lb-life-btn__word,
.lb-life-btn.is-active .lb-life-btn__word {
    color: var(--lb-dark);
}

/* ── LIFE content panels ──────────────────────────────── */
.lb-life-panels {
    border-top: 1px solid transparent;
    padding-top: 0;
    min-height: 0;
    transition: padding-top 0.2s ease, border-color 0.2s ease;
}

.lb-life-panels.has-active {
    border-top-color: rgba(0, 0, 0, 0.08);
    padding-top: 40px;
    min-height: 200px;
}

.lb-life-panel {
    display: none;
}

.lb-life-panel.is-active {
    display: block;
    animation: lb-panel-in 0.3s ease both;
}

@keyframes lb-panel-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.lb-life-panel h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--lb-dark);
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.lb-life-panel p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 14px;
    max-width: 780px;
}

.lb-life-panel p:last-child {
    margin-bottom: 0;
}

/* ── CTA Cards Section ────────────────────────────────── */
.lb-cta {
    background: var(--lb-mid);
}

.lb-cta__heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--lb-white);
    margin: 0 0 40px;
    letter-spacing: -0.01em;
}

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

.lb-cta-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
    border-radius: 8px;
    overflow: hidden;
    padding: 32px;
    background: var(--lb-dark);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lb-cta-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.lb-cta-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    transition: opacity 0.3s ease;
}

.lb-cta-card:hover .lb-cta-card__bg {
    opacity: 0.35;
}

.lb-cta-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 20, 24, 0.9) 0%, rgba(17, 20, 24, 0.3) 100%);
}

.lb-cta-card__content {
    position: relative;
    z-index: 2;
}

.lb-cta-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.lb-cta-card__title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--lb-white);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.lb-cta-card__desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 20px;
    line-height: 1.5;
}

.lb-cta-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lb-gold);
    transition: gap 0.15s;
}

.lb-cta-card:hover .lb-cta-card__link {
    gap: 10px;
}

.lb-cta-card__link svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Statistics Section ───────────────────────────────── */
.lb-stats {
    background: #f0f1f3;
    padding: 80px 40px;
}

.lb-stats__header {
    max-width: 720px;
    margin-bottom: 64px;
}

.lb-stats__header .lb-section-label {
    background: var(--lb-gold);
    color: var(--lb-dark);
}

.lb-stats__header h2 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 800;
    color: var(--lb-dark);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.lb-stats__intro {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4b5563;
    margin: 0;
    max-width: 640px;
}

.lb-stats__tabs {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.lb-stats__tabs::-webkit-scrollbar { display: none; }

.lb-stats__tab {
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 12px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
    cursor: pointer;
    position: relative;
    margin-bottom: -2px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.lb-stats__tab:hover { color: var(--lb-dark); }

.lb-stats__tab.is-active {
    color: var(--lb-dark);
    border-bottom-color: var(--lb-gold);
}

.lb-stats__panels { min-height: 260px; }

.lb-stats__panel { display: none; }
.lb-stats__panel.is-active { display: block; animation: lb-fade-in 0.25s ease; }

@keyframes lb-fade-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.lb-stats__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.lb-stat-card {
    background: var(--lb-white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 8px;
    padding: 28px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.lb-stat-card__number {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--lb-dark);
    line-height: 1;
    letter-spacing: -0.03em;
    display: block;
}

.lb-stat-card__unit {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--lb-gold);
}

.lb-stat-card__text {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #4b5563;
    margin: 0;
    flex: 1;
}

.lb-stat-card__source {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #9ca3af;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: auto;
    transition: color 0.15s;
}

.lb-stat-card__source:hover {
    color: var(--lb-teal);
}

.lb-stats__footnote {
    font-size: 0.75rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ── Leadership Page ─────────────────────────────────── */
.lb-leadership-section {
    padding: 80px 40px;
    background: #f9fafb;
}

.lb-leadership-section--alt {
    background: var(--lb-white);
}

.lb-leadership-section__header {
    max-width: 600px;
    margin-bottom: 48px;
}

.lb-leadership-section__header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--lb-dark);
    margin: 0;
    letter-spacing: -0.02em;
}

.lb-people-grid {
    display: grid;
    gap: 24px;
}

.lb-people-grid--5 { grid-template-columns: repeat(5, 1fr); }
.lb-people-grid--4 { grid-template-columns: repeat(4, 1fr); }

.lb-person-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    background: var(--lb-white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 32px 20px 24px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.lb-person-card__photo-wrap {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
    background: #f0f1f2;
    margin-bottom: 20px;
}

.lb-person-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.lb-person-card__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lb-person-card__name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--lb-dark);
    margin: 0;
    line-height: 1.3;
}

.lb-person-card__role {
    font-size: 0.75rem;
    color: var(--lb-teal);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lb-person-card__districts {
    font-size: 0.7rem;
    color: #9ca3af;
    margin: 6px 0 0;
    line-height: 1.5;
}

/* Vacant card */
.lb-person-card--vacant {
    background: #f9fafb;
    border-style: dashed;
    box-shadow: none;
}

.lb-person-card--vacant .lb-person-card__photo-wrap {
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-person-card__vacant-icon {
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-person-card__name--vacant {
    color: #9ca3af;
    font-style: italic;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .lb-people-grid--5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .lb-people-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .lb-leadership-section { padding: 60px 24px; }
    .lb-people-grid--5 { grid-template-columns: repeat(2, 1fr); }
    .lb-people-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Connect Section ──────────────────────────────────── */
.lb-connect {
    background: var(--lb-white);
    text-align: center;
}

.lb-connect.lb-connect--grey {
    background: var(--lb-white) !important;
}


.lb-connect__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.lb-btn--outline-dark {
    background: transparent;
    color: var(--lb-dark);
    border-color: rgba(0, 0, 0, 0.25);
}

.lb-btn--outline-dark:hover {
    border-color: var(--lb-dark);
    background: rgba(0, 0, 0, 0.04);
}

.lb-connect__heading {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--lb-dark);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.lb-connect__sub {
    font-size: 1.05rem;
    color: var(--lb-muted);
    margin: 0 0 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ── Pray Modal ───────────────────────────────────────── */
.lb-pray-modal {
    position: fixed;
    inset: 0;
    z-index: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.22s ease;
}

.lb-pray-modal.is-open {
    pointer-events: auto;
    opacity: 1;
}

.lb-pray-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 16, 0.78);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    cursor: pointer;
}

.lb-pray-modal__panel {
    position: relative;
    z-index: 1;
    background: var(--lb-darker);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 520px;
    width: 100%;
    padding: 56px 48px 48px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    transform: translateY(10px);
    transition: transform 0.28s ease;
}

.lb-pray-modal.is-open .lb-pray-modal__panel {
    transform: translateY(0);
}

.lb-pray-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s;
}

.lb-pray-modal__close:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.lb-pray-modal__close svg {
    width: 11px;
    height: 11px;
    stroke: rgba(255, 255, 255, 0.65);
    stroke-width: 2;
    stroke-linecap: round;
    fill: none;
}

@media (max-width: 600px) {
    .lb-pray-modal__panel {
        padding: 48px 28px 36px;
    }
}

/* ── Pray Page ────────────────────────────────────────── */
.lb-pray-wrapper {
    background: var(--lb-darker);
    min-height: calc(100vh - 44px - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    margin-top: calc(44px + 80px);
}

.lb-pray-card {
    max-width: 520px;
    width: 100%;
    text-align: center;
}

.lb-pray-brand {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
    text-decoration: none;
}

.lb-pray-divider {
    width: 32px;
    height: 2px;
    background: var(--lb-gold);
    margin: 0 auto 28px;
}

.lb-pray-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lb-gold);
    margin: 0 0 18px;
}

.lb-pray-heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--lb-white);
    margin: 0 0 18px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.lb-pray-body {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 36px;
}

.lb-pray-join {
    font-size: 1rem;
    padding: 16px 40px;
}

.lb-pray-next {
    margin-bottom: 24px;
}

.lb-pray-next__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0 10px;
}

.lb-pray-next__date {
    font-size: clamp(1.15rem, 3vw, 1.6rem);
    font-weight: 800;
    color: var(--lb-white);
    margin: 0;
    letter-spacing: 0.04em;
}

.lb-pray-zoom-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.15s;
}

.lb-pray-zoom-link:hover {
    color: rgba(255, 255, 255, 0.75);
}

.lb-pray-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lb-pray-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 28px;
    text-align: center;
}

.lb-pray-separator {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.lb-pray-detail__label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
}

.lb-pray-detail__value {
    font-size: 0.975rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 0.08em;
}

@media (max-width: 768px) {
    .lb-pray-wrapper {
        margin-top: 80px;
        min-height: calc(100vh - 80px);
        padding: 48px 24px 60px;
        align-items: flex-start;
        padding-top: 72px;
    }
}

/* ── Resources Page ──────────────────────────────────── */
.lb-resources-body {
    background: var(--lb-white);
    padding: 72px 0 96px;
}

.lb-resources-section {
    margin-bottom: 72px;
}

.lb-resources-section:last-child {
    margin-bottom: 0;
}

.lb-resources-section__header {
    margin-bottom: 36px;
}

.lb-resources-section__header h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--lb-text);
    margin: 0 0 12px;
    line-height: 1.2;
}

.lb-resources-section__intro {
    font-size: 1rem;
    color: var(--lb-muted);
    max-width: 560px;
    margin: 0;
    line-height: 1.65;
}

/* Grid */
.lb-res-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.lb-res-grid--crisis {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* Card */
.lb-res-card {
    display: flex;
    flex-direction: column;
    background: #f9fafb;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 12px;
    padding: 28px 24px 20px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
    cursor: pointer;
}

.lb-res-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.12);
}

.lb-res-card--crisis {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.09);
}

.lb-res-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--lb-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.lb-res-card--crisis .lb-res-card__icon {
    background: var(--lb-gold);
}

.lb-res-card__icon i {
    font-size: 16px;
    color: var(--lb-white);
}

.lb-res-card--crisis .lb-res-card__icon i {
    color: var(--lb-darker);
}

.lb-res-card__body {
    flex: 1;
}

.lb-res-card__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lb-muted);
    margin-bottom: 6px;
}

.lb-res-card__name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--lb-text);
    margin: 0 0 10px;
    line-height: 1.25;
}

.lb-res-card__desc {
    font-size: 0.875rem;
    color: var(--lb-muted);
    line-height: 1.6;
    margin: 0 0 12px;
}

.lb-res-card__call {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--lb-text);
    margin: 0 0 12px;
    letter-spacing: 0.01em;
}

.lb-res-card__call i {
    font-size: 0.85rem;
    color: var(--lb-muted);
}

.lb-res-card__visit {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--lb-muted);
    margin-top: 8px;
    transition: color 0.15s;
}

.lb-res-card:hover .lb-res-card__visit {
    color: var(--lb-text);
}

.lb-res-card__visit .lb-ext-icon {
    width: 9px;
    height: 9px;
    stroke: currentColor;
    stroke-width: 1.4;
}

@media (max-width: 640px) {
    .lb-resources-body {
        padding: 48px 0 64px;
    }

    .lb-res-grid,
    .lb-res-grid--crisis {
        grid-template-columns: 1fr;
    }

    .lb-resources-section {
        margin-bottom: 48px;
    }
}

/* ── Footer (shared NTCG style) ───────────────────────── */
.hp-strip { display: flex; height: 6px; }
.hp-strip span { flex: 1; }

.hp-footer { background: #30373b; display: flex; flex-direction: column; font-family: var(--lb-font); }

.hp-footer__tagline-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 56px 80px 48px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hp-footer__tagline { color: #F7C70C; font-size: clamp(20px, 2.5vw, 30px); font-weight: 400; margin: 0; letter-spacing: 0.5px; }
.hp-footer__tagline-sub { color: #9ca3af; font-size: 14px; margin: 0; }

.hp-footer__body { padding: 48px 80px; }
.hp-footer__body--no-locations .hp-footer__info { display: flex; flex-direction: row; gap: 48px; align-items: flex-start; flex-wrap: wrap; }

.hp-footer__logo { height: 40px; width: auto; object-fit: contain; object-position: left; }
.hp-footer__info-head { color: #ffffff; font-size: 12px; font-weight: 700; margin: 0 0 8px; }
.hp-footer__info-text { color: #9ca3af; font-size: 13px; line-height: 1.7; margin: 0; }
.hp-footer__phone { color: rgba(255,255,255,0.60); }
.hp-footer__ministries-list { display: flex; flex-direction: column; gap: 4px; }
.hp-footer__ministries-list a { color: #9ca3af; font-size: 13px; text-decoration: none; transition: color 0.2s; }
.hp-footer__ministries-list a:hover { color: #ffffff; }

.hp-footer__bottom { display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 32px 80px 40px; border-top: 1px solid rgba(255,255,255,0.08); }
.hp-footer__find-btn { display: inline-block; border: 1.5px solid #6b7280; border-radius: 999px; padding: 10px 28px; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #e5e7eb; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.hp-footer__find-btn:hover { border-color: #ffffff; color: #ffffff; }
.hp-footer__find-btn--mobile { display: none; }
@media (max-width: 768px) {
    .hp-footer__find-btn--desktop { display: none; }
    .hp-footer__find-btn--mobile { display: inline-block; }
}
.hp-footer__social { display: flex; gap: 10px; }
.hp-footer__social-icon { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: #4b5563; color: #e5e7eb; font-size: 14px; text-decoration: none; transition: background 0.2s, color 0.2s; }
.hp-footer__social-icon:hover { background: #6b7280; color: #ffffff; }
.hp-footer__copy { color: rgba(255,255,255,0.60); font-size: 12px; margin: 0; text-align: center; line-height: 1.6; }

/* ── Stickybar ────────────────────────────────────────── */
.lb-nav-sentinel {
    height: 0;
    margin-top: 48px;
}

.lb-stickybar {
    display: none;
}

.lb-stickybar.is-sticky {
    display: block;
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 400;
    background: #30373b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.admin-bar .lb-stickybar.is-sticky {
    top: 76px;
}

.lb-stickybar__brand {
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1;
}

.lb-stickybar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0 18px;
    max-width: 1280px;
    margin: 0 auto;
}

.lb-stickybar__brand img {
    height: 36px;
    width: auto;
    display: block;
}

.lb-stickybar__nav {
    display: flex;
    align-items: center;
}

.lb-stickybar__social {
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 2px;
}

.lb-stickybar__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.15s, background 0.15s;
}

.lb-stickybar__social-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.lb-mobile-menu__social {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 20px 0 8px;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lb-mobile-menu__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    text-decoration: none;
    transition: color 0.15s, background 0.15s;
}

.lb-mobile-menu__social-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ── Nav items ────────────────────────────────────────── */
.lb-nav-item {
    position: relative;
}

.lb-nav-item > a {
    display: inline-flex;
    align-items: center;
    height: 80px;
    padding: 0 16px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: lowercase;
    text-decoration: none;
    transition: color 0.15s;
}

.lb-nav-item > a:hover {
    color: var(--lb-gold);
}

/* ── Megamenu ─────────────────────────────────────────── */
.lb-nav-dd {
    display: none;
    position: fixed;
    top: calc(44px + 80px);
    left: 0;
    right: 0;
    background: #2c3337;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    z-index: 399;
}

.admin-bar .lb-nav-dd {
    top: calc(76px + 80px);
}

.lb-stickybar.is-sticky .lb-nav-item--has-dd:hover .lb-nav-dd,
.lb-stickybar.is-sticky .lb-nav-item--has-dd:focus-within .lb-nav-dd {
    display: block;
}

.lb-nav-dd__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
}

.lb-nav-dd__links {
    padding: 36px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.lb-nav-dd__title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 18px;
}

.lb-nav-dd__links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lb-nav-dd__links ul li + li {
    margin-top: 0;
}

.lb-nav-dd__links ul a {
    display: block;
    padding: 9px 0;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.15s;
    letter-spacing: 0;
}

.lb-nav-dd__links ul li:last-child a {
    border-bottom: none;
}

.lb-nav-dd__links ul a:hover {
    color: rgba(255, 255, 255, 0.95);
}

.lb-ext-icon {
    width: 8px;
    height: 8px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    opacity: 0.5;
    flex-shrink: 0;
}

.lb-nav-dd__promo {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lb-nav-dd__promo h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--lb-white);
    margin: 0 0 12px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.lb-nav-dd__promo p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.65;
    margin: 0 0 24px;
}

.lb-nav-dd__promo-btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 10px 22px;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    font-family: var(--lb-font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}

.lb-nav-dd__promo-btn:hover {
    border-color: rgba(255, 255, 255, 0.75);
    color: var(--lb-white);
}

/* ── Mobile trigger (hamburger) ───────────────────────── */
.lb-mobile-trigger {
    display: none;
    position: fixed;
    top: 44px;
    right: 0;
    z-index: 401;
    width: 80px;
    height: 80px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
}

.lb-mobile-trigger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transition: transform 0.22s ease, opacity 0.15s ease;
}

.admin-bar .lb-mobile-trigger {
    top: 76px;
}

/* Hamburger → X when menu open */
.lb-menu-open .lb-mobile-trigger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.lb-menu-open .lb-mobile-trigger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.lb-menu-open .lb-mobile-trigger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile drawer ────────────────────────────────────── */
.lb-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 600;
    background: #1c2024;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.lb-menu-open .lb-mobile-menu {
    display: flex;
}

.lb-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.lb-mobile-menu__brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.lb-mobile-menu__close {
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: border-color 0.15s;
}

.lb-mobile-menu__close:hover {
    border-color: rgba(255, 255, 255, 0.45);
}

.lb-mobile-menu__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 2px;
}

.lb-mobile-menu__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.lb-mobile-menu__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.lb-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Row: main link + chevron toggle side by side */
.lb-mobile-menu__row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lb-mobile-menu__link {
    display: block;
    padding: 17px 24px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: lowercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.15s;
}

.lb-mobile-menu__row .lb-mobile-menu__link {
    flex: 1;
    border-bottom: none;
}

.lb-mobile-menu__link:hover {
    color: var(--lb-gold);
}

/* Chevron toggle button */
.lb-mobile-menu__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    background: none;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.15s;
    flex-shrink: 0;
}

.lb-mobile-menu__toggle:hover {
    color: rgba(255, 255, 255, 0.7);
}

.lb-mobile-chevron {
    transition: transform 0.2s ease;
}

.lb-mobile-chevron.is-open {
    transform: rotate(90deg);
}

/* Subnav */
.lb-mobile-menu__subnav {
    background: rgba(0, 0, 0, 0.25);
}

.lb-mobile-menu__subnav-link {
    display: block;
    padding: 11px 24px 11px 40px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.15s;
}

.lb-mobile-menu__subnav-link:last-child {
    border-bottom: none;
}

.lb-mobile-menu__subnav-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Network links at bottom */
.lb-mobile-menu__network {
    margin-top: auto;
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.lb-mobile-menu__network a {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    text-decoration: none;
    transition: color 0.15s, border-color 0.15s;
}

.lb-mobile-menu__network a:hover {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ── Inner page layout ────────────────────────────────── */
.lb-page-main {
    padding-top: 0;
}

/* ── Stickybar: always-on variant (inner pages) ────────── */
.lb-stickybar--page.is-sticky {
    display: block;
}

@media (max-width: 768px) {
    .lb-mobile-trigger--page {
        display: flex;
        top: 8px;
    }

    .admin-bar .lb-mobile-trigger--page {
        top: 40px;
    }
}

/* ── Section label ────────────────────────────────────── */
.lb-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lb-gold);
    background: var(--lb-dark);
    display: inline-block;
    padding: 4px 10px;
    border-radius: 3px;
    margin: 0 0 16px;
}

/* Light variant — about page body on white background */
.lb-about-content .lb-section-label {
    background: #e5e7eb;
    color: #374151;
    border-radius: 5px;
    font-size: 9.5px;
}

/* ── Page Header ──────────────────────────────────────── */
.lb-page-header {
    background: var(--lb-dark);
    padding: calc(44px + 80px + 40px) 40px 64px;
}

.admin-bar .lb-page-header {
    padding-top: calc(76px + 80px + 40px);
}

.lb-page-header .lb-section-label {
    background: rgba(255, 255, 255, 0.1);
    color: var(--lb-gold);
}

.lb-page-header__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lb-gold);
    margin: 0 0 16px;
}

.lb-page-header__title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--lb-white);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.lb-page-header__sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    max-width: 600px;
    line-height: 1.65;
}

/* ── About page body layout ───────────────────────────── */
.lb-about-body {
    background: var(--lb-white);
    padding: 0 40px;
}

.lb-about-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 80px;
    align-items: start;
    padding: 64px 0 80px;
}

/* ── About content sections ───────────────────────────── */
.lb-about-content {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
}

.lb-about-section {
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 64px;
}

.lb-about-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.lb-about-section h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: var(--lb-dark);
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.lb-about-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 16px;
}

.lb-about-section p:last-of-type {
    margin-bottom: 0;
}

.lb-about-section__intro {
    color: var(--lb-muted) !important;
    margin-bottom: 28px !important;
}

.lb-about-section__emphasis {
    font-style: italic;
    font-weight: 600;
    color: var(--lb-dark) !important;
    font-size: 1.05rem !important;
}

.lb-about-section--connect {
    background: #f3f4f6;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 48px !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
    text-align: center;
}

.lb-about-section--connect .lb-connect__heading {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: var(--lb-dark);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.lb-about-section--connect .lb-connect__sub {
    font-size: 1rem;
    color: var(--lb-muted);
    margin: 0 0 28px;
    line-height: 1.6;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.lb-about-section--connect .lb-connect__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Side nav ─────────────────────────────────────────── */
.lb-about-sidenav {
    grid-column: 2;
    grid-row: 1;
    position: sticky;
    top: calc(44px + 80px + 32px);
}

.lb-sidenav {
    display: flex;
    flex-direction: column;
}

.lb-sidenav__link {
    display: block;
    padding: 7px 0 7px 14px;
    font-size: 13px;
    color: #9ca3af;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
    line-height: 1.4;
}

.lb-sidenav__link:hover {
    color: var(--lb-dark);
}

.lb-sidenav__link.is-active {
    color: var(--lb-dark);
    border-left-color: var(--lb-dark);
    font-weight: 600;
}

/* ── LIFE Accordion (about page) ──────────────────────── */
.lb-accordion {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 8px;
}

.lb-accordion__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    transition: background 0.2s ease;
}

.lb-accordion__item:last-child {
    border-bottom: none;
}

.lb-accordion__item.is-open {
    background: #f3f4f6;
}

.lb-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s;
}

.lb-accordion__trigger:hover {
    background: rgba(0, 0, 0, 0.02);
}

.lb-accordion__item.is-open .lb-accordion__trigger {
    background: none;
}

.lb-accordion__letter {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(0, 0, 0, 0.1);
    letter-spacing: -0.04em;
    flex-shrink: 0;
    width: 36px;
    transition: color 0.2s;
}

.lb-accordion__item.is-open .lb-accordion__letter,
.lb-accordion__trigger:hover .lb-accordion__letter {
    color: var(--lb-gold);
}

.lb-accordion__heading {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.lb-accordion__title {
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--lb-dark);
    line-height: 1.3;
}

.lb-accordion__sub {
    font-size: 0.8rem;
    color: #9ca3af;
}

.lb-accordion__icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    position: relative;
    transition: border-color 0.15s, transform 0.2s;
}

.lb-accordion__icon::before,
.lb-accordion__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #9ca3af;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

.lb-accordion__icon::before {
    width: 8px;
    height: 1.5px;
    transform: translate(-50%, -50%);
}

.lb-accordion__icon::after {
    width: 1.5px;
    height: 8px;
    transform: translate(-50%, -50%);
}

.lb-accordion__item.is-open .lb-accordion__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.lb-accordion__item.is-open .lb-accordion__icon {
    border-color: var(--lb-gold);
}

.lb-accordion__item.is-open .lb-accordion__icon::before,
.lb-accordion__item.is-open .lb-accordion__icon::after {
    background: var(--lb-gold);
}

.lb-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.lb-accordion__body > * {
    margin: 0;
}

.lb-accordion__body p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #4b5563;
    padding: 0 24px 12px 80px;
}

.lb-accordion__body p:first-child {
    padding-top: 4px;
}

.lb-accordion__activities {
    list-style: none;
    margin: 0;
    padding: 0 24px 24px 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.lb-accordion__activities li {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lb-dark);
    background: rgba(247, 199, 12, 0.12);
    border: 1px solid rgba(247, 199, 12, 0.3);
    border-radius: 4px;
    padding: 3px 9px;
}

/* ── Strategic outcomes (light variant for about body) ── */
.lb-about-section .lb-outcomes-grid {
    border-color: rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.lb-about-section .lb-outcomes-header {
    background: #f3f4f6;
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.lb-about-section .lb-outcomes-header--national {
    color: var(--lb-teal);
}

.lb-about-section .lb-outcomes-header--local {
    color: var(--lb-dark);
    border-left-color: rgba(0, 0, 0, 0.06);
}

.lb-about-section .lb-outcomes-cell {
    color: #4b5563;
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

.lb-about-section .lb-outcomes-cell--label {
    color: var(--lb-dark);
    background: #f9f9fb;
}

.lb-about-section .lb-outcomes-cell:not(.lb-outcomes-cell--label):nth-child(3n) {
    border-left-color: rgba(0, 0, 0, 0.06);
}

/* ── Homepage mission: grey background + smaller text ─── */
.lb-about-mission.lb-about-mission--home {
    background: var(--lb-white);
}

.lb-about-mission--home .lb-section-label {
    background: var(--lb-gold);
    color: var(--lb-dark);
    font-size: 11px;
    font-weight: 700;
}

.lb-about-mission--home .lb-about-mission__content h2 {
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--lb-dark);
}

.lb-mission-heading__grey { color: #a6a6a6; }
.lb-mission-heading__gold { color: var(--lb-gold); }

.lb-about-mission--home .lb-about-mission__content p {
    color: #4b5563;
}

.lb-about-mission--home .lb-about-mission__quote-block {
    background: #e5e7eb;
    border-radius: 8px;
}

.lb-about-mission--home .lb-about-mission__quote-block p {
    font-size: 0.975rem;
    color: #374151;
    font-style: italic;
    font-weight: 500;
}

.lb-about-mission--home .lb-about-mission__quote-block cite {
    color: var(--lb-dark);
    font-size: 0.8rem;
}

/* ── About: Mission ───────────────────────────────────── */
.lb-about-mission__stripe {
    height: 5px;
    margin: 0 -40px 80px;
    background: linear-gradient(
        to right,
        #f7c70c 0% 20%,
        #0facb2 20% 40%,
        #3a9ecf 40% 60%,
        #d42769 60% 80%,
        #7c3aed 80% 100%
    );
}

.lb-about-mission {
    background: var(--lb-white);
    padding: 0 40px 80px;
}

.lb-about-mission__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
    padding: 0;
}

.lb-about-mission__content h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--lb-dark);
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.lb-about-mission__content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 16px;
}

.lb-about-mission__content p:last-child {
    margin-bottom: 0;
}

.lb-about-mission__content em {
    font-style: italic;
    color: var(--lb-dark);
    font-weight: 600;
}

.lb-about-mission__quote-block {
    background: var(--lb-dark);
    border-radius: 8px;
    padding: 36px 32px;
    align-self: start;
}

.lb-about-mission__quote-block blockquote {
    margin: 0;
    padding: 0;
}

.lb-about-mission__quote-block p {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 16px;
}

.lb-about-mission__quote-block cite {
    font-size: 0.85rem;
    color: var(--lb-gold);
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* ── About: Who We Are ────────────────────────────────── */
.lb-about-intro {
    background: #f9f9fb;
    padding: 80px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.lb-about-intro h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--lb-dark);
    margin: 0 0 32px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    max-width: 640px;
}

.lb-about-intro__body {
    max-width: 760px;
}

.lb-about-intro__body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 18px;
}

.lb-about-intro__body p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: var(--lb-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ── About: LIFE Framework ────────────────────────────── */
.lb-about-life {
    background: var(--lb-white);
    padding: 80px 40px;
}

.lb-about-life h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--lb-dark);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.lb-about-life__word {
    color: var(--lb-teal);
}

.lb-about-life__intro {
    font-size: 1.05rem;
    color: var(--lb-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 0 56px;
}

.lb-about-life__grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lb-life-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0;
    background: var(--lb-white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.lb-life-card:hover {
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.08);
}

.lb-life-card--alt {
    background: #fafafa;
}

.lb-life-card__letter {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 900;
    color: var(--lb-gold);
    background: var(--lb-dark);
    letter-spacing: -0.04em;
    line-height: 1;
    padding: 40px 0;
    flex-shrink: 0;
}

.lb-life-card__body {
    padding: 36px 40px;
}

.lb-life-card__body h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 800;
    color: var(--lb-dark);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.lb-life-card__body p {
    font-size: 0.975rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 12px;
}

.lb-life-card__body p:last-of-type {
    margin-bottom: 20px;
}

.lb-life-card__activities {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lb-life-card__activities li {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--lb-dark);
    background: rgba(247, 199, 12, 0.12);
    border: 1px solid rgba(247, 199, 12, 0.3);
    border-radius: 4px;
    padding: 4px 10px;
}

/* ── About: Strategic Outcomes ────────────────────────── */
.lb-about-outcomes {
    background: var(--lb-dark);
    padding: 80px 40px;
}

.lb-about-outcomes .lb-section-label {
    background: rgba(255, 255, 255, 0.1);
}

.lb-about-outcomes h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--lb-white);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.lb-about-outcomes__intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 0 48px;
}

.lb-outcomes-grid {
    display: grid;
    grid-template-columns: 120px 1fr 1fr;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.lb-outcomes-header {
    grid-column: span 1;
    padding: 14px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lb-outcomes-header--national {
    color: var(--lb-teal);
    grid-column: 2;
}

.lb-outcomes-header--local {
    color: var(--lb-gold);
    grid-column: 3;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.lb-outcomes-cell {
    padding: 20px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lb-outcomes-cell:last-child,
.lb-outcomes-cell:nth-last-child(2),
.lb-outcomes-cell:nth-last-child(3) {
    border-bottom: none;
}

.lb-outcomes-cell--label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lb-gold);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
}

.lb-outcomes-cell:not(.lb-outcomes-cell--label):nth-child(3n) {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
    /* Hide NTCG network topbar on mobile — stickybar takes over */
    .ntcg-topbar {
        display: none !important;
    }

    .lb-hero__content {
        padding: 0 24px;
    }

    .lb-section {
        padding: 60px 24px;
    }

    .lb-life {
        padding: 60px 24px;
    }

    .lb-life-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .lb-life-btn__letter {
        font-size: 3.5rem;
    }

    .lb-footer {
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* Stickybar: no topbar above it on mobile */
    .lb-stickybar.is-sticky {
        top: 0;
    }

    .admin-bar .lb-stickybar.is-sticky {
        top: 32px;
    }

    /* Stickybar: hide nav links and social on mobile */
    .lb-stickybar__nav,
    .lb-stickybar__social {
        display: none;
    }

    /* Mobile trigger: always visible on mobile regardless of hidden attribute */
    .lb-mobile-trigger,
    .lb-mobile-trigger[hidden] {
        display: flex !important;
        top: 8px;
        right: 14px;
        width: 44px;
        height: 44px;
    }

    .admin-bar .lb-mobile-trigger,
    .admin-bar .lb-mobile-trigger[hidden] {
        top: 40px;
    }

    /* About page responsive */
    .lb-about-body { padding: 0 24px; }

    .lb-about-layout {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 48px 0 60px;
    }

    .lb-about-sidenav { display: none; }

    .lb-accordion__body p,
    .lb-accordion__activities {
        padding-left: 24px;
    }

    .lb-about-mission { padding: 0 24px 60px; }
    .lb-about-mission__stripe { margin: 0 -24px 60px; }
    .lb-about-mission__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }

    .lb-about-intro { padding: 60px 24px; }
    .lb-about-life  { padding: 60px 24px; }

    .lb-life-card {
        grid-template-columns: 70px 1fr;
    }

    .lb-life-card__letter {
        font-size: 3rem;
        padding: 32px 0;
    }

    .lb-life-card__body {
        padding: 24px 20px;
    }

    .lb-about-outcomes { padding: 60px 24px; }

    .lb-outcomes-grid {
        grid-template-columns: 100px 1fr 1fr;
    }

    .lb-outcomes-cell {
        padding: 14px;
        font-size: 0.8rem;
    }

    .lb-page-header { padding: calc(80px + 32px) 24px 40px; }

    /* Statistics */
    .lb-stats { padding: 60px 24px; }
    .lb-stats__row { grid-template-columns: 1fr; gap: 12px; }
    .lb-stats__tab { padding: 10px 14px; font-size: 10px; }

    /* Footer */
    .hp-footer__tagline-wrap { padding: 48px 24px 40px; }
    .hp-footer__body { padding: 40px 24px; }
    .hp-footer__body--no-locations .hp-footer__info { flex-direction: column; align-items: center; text-align: center; }
    .hp-footer__logo { object-position: center; }
    .hp-footer__ministries-list { align-items: center; }
    .hp-footer__bottom { padding: 32px 24px 40px; }
}
