:root {
    --tag-navy: #0f2742;
    --tag-blue: #1f6feb;
    --tag-ink: #1e293b;
    --tag-surface: #ffffff;
    --tag-bg: #f5f7fb;
}

html,
body {
    background: var(--tag-bg);
    color: var(--tag-ink);
}

body {
    min-height: 100vh;
}

.site-navbar {
    background: linear-gradient(90deg, var(--tag-navy), #102b4a);
    box-shadow: 0 10px 30px rgba(15, 39, 66, 0.12);
}

.brand-logo {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 50%;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.84);
    font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #ffffff;
}

.page-section,
.hero-section {
    padding: 4rem 0;
}

.hero-section {
    background: radial-gradient(circle at top right, rgba(31, 111, 235, 0.18), transparent 30%), linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 247, 251, 0.95));
}

.hero-image {
    box-shadow: 0 18px 40px rgba(15, 39, 66, 0.18);
    border: 1px solid rgba(15, 39, 66, 0.08);
}

.section-kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    color: var(--tag-blue);
    font-weight: 700;
}

.section-heading {
    margin-bottom: 1.5rem;
}

.content-card {
    background: var(--tag-surface);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(15, 39, 66, 0.08);
    border: 1px solid rgba(15, 39, 66, 0.08);
}

.content-card img {
    object-fit: cover;
}

.gallery-tile {
    background: var(--tag-surface);
    border-radius: 1rem;
    padding: 0.5rem;
    box-shadow: 0 12px 30px rgba(15, 39, 66, 0.08);
    border: 1px solid rgba(15, 39, 66, 0.08);
}

.site-footer {
    background: var(--tag-navy);
    color: rgba(255, 255, 255, 0.88);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.site-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.site-footer-bottom {
    background: rgba(0, 0, 0, 0.12);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1rem;
}

.footer-contact li + li,
.profile-list li + li {
    margin-top: 0.35rem;
}

.table {
    color: var(--tag-ink);
}

.table thead th {
    background: #eef3fb;
    color: var(--tag-ink);
    border-bottom: 0;
}

.table > :not(caption) > * > * {
    padding: 1rem 0.75rem;
}

.btn-primary {
    background-color: var(--tag-blue);
    border-color: var(--tag-blue);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #1857b8;
    border-color: #1857b8;
}

.btn-warning {
    color: var(--tag-navy);
    font-weight: 700;
}

.form-control,
.form-select {
    border-radius: 0.75rem;
    border-color: #cfd8e3;
    min-height: 46px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--tag-blue);
    box-shadow: 0 0 0 0.2rem rgba(31, 111, 235, 0.12);
}

.alert {
    border-radius: 0.85rem;
}

@media (max-width: 991.98px) {
    .navbar .nav-link {
        padding: 0.75rem 0;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
.hero-home {
    padding-top: 1rem;
    background: #f3f0e8;
}

.hero-shell {
    background: #0f1f38;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 39, 66, 0.22);
}

.hero-slide-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 560px;
}

.hero-slide-copy {
    padding: 4.5rem 3.5rem;
    color: #f7f1e3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, rgba(15, 31, 56, 0.96), rgba(15, 31, 56, 0.92));
}

.hero-eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d3bb7b;
    font-weight: 700;
}

.hero-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.5rem, 6vw, 4.6rem);
    line-height: 0.95;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #fff6e6;
}

.hero-text {
    max-width: 38rem;
    font-size: 1.05rem;
    color: rgba(255, 244, 226, 0.82);
}

.hero-slide-visual {
    min-height: 100%;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 560px;
}

.btn-gold {
    background: #b68a2f;
    color: #fff;
    border: 1px solid #b68a2f;
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
}

.btn-gold:hover,
.btn-gold:focus {
    background: #9f7722;
    color: #fff;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
}

.btn-ghost:hover,
.btn-ghost:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.section-soft {
    background: #f3f0e8;
}

.section-title-alt {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 3vw, 3.1rem);
    color: #1d1d1d;
}

.section-lead {
    max-width: 40rem;
    color: #5c5c5c;
}

.about-image-card {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 16px 30px rgba(15, 39, 66, 0.14);
}

.mini-metric {
    background: #fff;
    border-radius: 1.2rem;
    padding: 1.2rem 1.4rem;
    box-shadow: 0 14px 24px rgba(15, 39, 66, 0.08);
}

.mini-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: #b68a2f;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.mini-value {
    font-size: 1.15rem;
    color: #111827;
}

.feature-card {
    border-radius: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0 14px 28px rgba(15, 39, 66, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card-dark {
    background: #07163b;
    color: #f8f2e5;
}

.feature-icon {
    font-size: 1.3rem;
    color: #d8b26a;
    margin-bottom: 1rem;
}

.feature-icon-light {
    color: #b68a2f;
}

.feature-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
}

.feature-text {
    color: inherit;
    opacity: 0.92;
    margin-bottom: 1rem;
}

.feature-link {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
}

.service-card-modern,
.event-card-modern {
    background: #fff;
    border-radius: 1.35rem;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(15, 39, 66, 0.08);
}

.service-thumb,
.event-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-date-pill {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #b68a2f;
    font-weight: 700;
}

.verse-band {
    background: linear-gradient(rgba(7, 22, 59, 0.88), rgba(7, 22, 59, 0.88)), url('/images/christian-life-crisis-prayer.jpg') center/cover no-repeat;
}

.verse-mark {
    font-size: 1.6rem;
    color: #d8b26a;
}

.verse-text {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    max-width: 52rem;
    margin: 0 auto;
}

.verse-ref {
    margin-top: 0.8rem;
    font-weight: 700;
    color: #e7d8b2;
}

.cta-card {
    background: #07163b;
    color: #f8f2e5;
    border-radius: 2rem;
    padding: 3rem 2rem;
    box-shadow: 0 18px 40px rgba(15, 39, 66, 0.18);
}

.cta-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 0.8rem;
}

.cta-text {
    max-width: 42rem;
    margin: 0 auto;
    color: rgba(255, 248, 234, 0.82);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.contact-list li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 12px 24px rgba(15, 39, 66, 0.06);
}

.map-card {
    border-radius: 1.5rem;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 12px 24px rgba(15, 39, 66, 0.06);
}

@media (max-width: 991.98px) {
    .hero-slide-grid {
        grid-template-columns: 1fr;
    }

    .hero-slide-copy {
        padding: 2.5rem 1.5rem;
    }

    .hero-slide-image {
        min-height: 320px;
    }
}
.home-page {
    background: #f5f0e8;
}

.home-hero {
    position: relative;
    min-height: 720px;
    background: url('/images/christian-life-crisis-prayer.jpg') center center / cover no-repeat;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 18, 40, 0.92) 0%, rgba(8, 18, 40, 0.82) 42%, rgba(8, 18, 40, 0.35) 100%);
}

.home-hero-inner {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-copy {
    color: #fff6e8;
    padding: 7rem 0 6rem;
}

.hero-topline {
    margin: 0 0 1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #d8b26a;
    font-weight: 700;
}

.hero-main-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(3rem, 6vw, 4.8rem);
    line-height: 0.95;
    max-width: 11ch;
    margin-bottom: 1rem;
}

.hero-lead {
    max-width: 36rem;
    font-size: 1.05rem;
    color: rgba(255, 245, 226, 0.88);
}

.hero-quote {
    max-width: 30rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: #f4e5c4;
    font-style: italic;
}

.btn-home-primary,
.btn-home-secondary,
.btn-home-gold {
    border-radius: 999px;
    padding: 0.85rem 1.35rem;
    font-weight: 700;
}

.btn-home-primary,
.btn-home-gold {
    background: #b98a2d;
    color: #fff;
    border: 1px solid #b98a2d;
}

.btn-home-primary:hover,
.btn-home-primary:focus,
.btn-home-gold:hover,
.btn-home-gold:focus {
    background: #a57621;
    color: #fff;
}

.btn-home-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-home-secondary:hover,
.btn-home-secondary:focus {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.home-section {
    padding: 4.5rem 0;
}

.home-intro,
.home-values,
.home-services,
.home-events,
.home-family,
.home-contact,
.home-cta {
    background: #f5f0e8;
}

.section-meta {
    display: inline-block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.76rem;
    color: #8a7d67;
    font-weight: 700;
}

.section-heading-large {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    color: #111827;
    line-height: 1.05;
}

.intro-image-wrap {
    border-radius: 1.6rem;
    overflow: hidden;
    box-shadow: 0 22px 40px rgba(15, 39, 66, 0.16);
}

.intro-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text {
    color: #444;
    margin-bottom: 0.9rem;
}

.metric-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem 1.1rem;
    box-shadow: 0 12px 24px rgba(15, 39, 66, 0.08);
}

.metric-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    color: #b98a2d;
    font-weight: 700;
    text-transform: uppercase;
}

.metric-value {
    display: block;
    margin-top: 0.35rem;
    color: #111827;
    font-weight: 700;
}

.section-heading-wrap {
    margin-bottom: 1.5rem;
}

.section-title-center {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    color: #111827;
}

.section-subtitle {
    color: #666;
    max-width: 42rem;
    margin: 0 auto;
}

.value-card {
    position: relative;
    border-radius: 1.3rem;
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0 14px 28px rgba(15, 39, 66, 0.08);
    overflow: hidden;
}

.value-card-dark {
    background: #07163b;
    color: #fff;
}

.value-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.65rem;
    margin-bottom: 0.8rem;
}

.value-card p {
    margin-bottom: 0;
    color: inherit;
    opacity: 0.92;
}

.schedule-card {
    position: relative;
    min-height: 320px;
    border-radius: 1.5rem;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 18px 36px rgba(15, 39, 66, 0.14);
    isolation: isolate;
}

.schedule-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.schedule-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 22, 59, 0.12), rgba(7, 22, 59, 0.78));
    z-index: 1;
}

.schedule-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #fff;
}

.schedule-card-day {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(214, 173, 90, 0.92);
    color: #07163b;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.schedule-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.7rem;
    margin-bottom: 0.55rem;
}

.schedule-card p {
    margin-bottom: 0;
    color: rgba(255, 248, 234, 0.9);
}

.schedule-welcome {
    background: #fff;
    border-radius: 1.3rem;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 14px 28px rgba(15, 39, 66, 0.08);
    color: #384152;
}

.value-icon {
    color: #d8b26a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-card,
.event-card {
    background: #fff;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(15, 39, 66, 0.08);
}

.service-image-wrap,
.event-image {
    width: 100%;
}

.service-image,
.event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-body,
.event-body {
    padding: 1rem 1rem 1.1rem;
}

.service-body h3,
.event-body h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
}

.service-body p,
.event-body p {
    margin-bottom: 0;
    color: #606060;
}

.empty-state-alert {
    border-radius: 1rem;
    border: 1px dashed #c9b78b;
    background: rgba(185, 138, 45, 0.08);
    color: #6d5321;
}

.verse-banner {
    padding: 4.5rem 0;
    background: linear-gradient(rgba(7, 22, 59, 0.9), rgba(7, 22, 59, 0.9)), url('/images/christian-life-crisis-prayer.jpg') center center / cover no-repeat;
}

.verse-icon {
    font-size: 1.5rem;
    color: #d8b26a;
}

.verse-text {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    line-height: 1.2;
    max-width: 45rem;
    margin: 1rem auto 0.5rem;
}

.verse-ref {
    color: #e7d8b2;
    font-weight: 700;
    margin-bottom: 0;
}

.verse-desc {
    color: rgba(255, 248, 234, 0.82);
    margin-top: 1rem;
    margin-bottom: 0;
}

.family-text-wrap {
    padding-right: 1rem;
}

.family-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: grid;
    gap: 0.75rem;
}

.family-list li {
    position: relative;
    padding-left: 1.2rem;
    color: #3f3f3f;
}

.family-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #d8b26a;
}

.family-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.family-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 1.1rem;
    box-shadow: 0 14px 24px rgba(15, 39, 66, 0.08);
}

.family-img-tall {
    height: 240px;
    grid-row: span 2;
}

.family-img-wide {
    grid-column: span 2;
    height: 180px;
}

.cta-panel {
    background: #07163b;
    color: #fff;
    border-radius: 2rem;
    padding: 3rem 2rem;
    box-shadow: 0 18px 40px rgba(15, 39, 66, 0.18);
}

.cta-panel h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.cta-panel p {
    margin-bottom: 0;
    color: rgba(255, 248, 234, 0.82);
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.contact-info-list li {
    padding: 1rem 1.15rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 12px 24px rgba(15, 39, 66, 0.06);
    color: #444;
}

.map-card-modern {
    background: #fff;
    border-radius: 1.4rem;
    padding: 1rem;
    box-shadow: 0 12px 24px rgba(15, 39, 66, 0.06);
}

@media (max-width: 991.98px) {
    .home-hero,
    .home-hero-inner {
        min-height: 620px;
    }

    .family-grid {
        grid-template-columns: 1fr;
    }

    .family-img-wide,
    .family-img-tall {
        grid-column: auto;
        grid-row: auto;
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .hero-copy {
        padding: 5rem 0 4rem;
    }

    .home-section {
        padding: 3.5rem 0;
    }
}


.animate-delay-1 {
    animation-delay: 0.08s;
}

.animate-delay-2 {
    animation-delay: 0.16s;
}

.animate-delay-3 {
    animation-delay: 0.24s;
}

.animate-delay-4 {
    animation-delay: 0.32s;
}
.about-page {
    background: #ffffff;
}

.about-hero {
    position: relative;
    min-height: 360px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 18, 38, 0.45), rgba(9, 18, 38, 0.72));
}

.about-hero-content {
    padding-top: 4rem;
    padding-bottom: 4rem;
    z-index: 1;
}

.about-hero-card {
    max-width: 720px;
    color: #fff;
    background: rgba(6, 17, 41, 0.72);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.2rem;
    padding: 2.25rem 2.3rem;
    box-shadow: 0 20px 40px rgba(15, 39, 66, 0.22);
}

.about-hero-kicker {
    margin-bottom: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d8b26a;
    font-size: 0.78rem;
    font-weight: 700;
}

.about-hero-title,
.about-section-title,
.about-verse-text,
.about-cta-card h2 {
    font-family: Georgia, 'Times New Roman', serif;
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 0.98;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.about-hero-subtitle {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.84);
}

.about-hero-text {
    max-width: 58ch;
    color: rgba(255, 248, 234, 0.9);
    margin-top: 1rem;
    margin-bottom: 1.6rem;
}

.about-section {
    padding: 4.5rem 0;
}

.about-section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: 1rem;
    color: #111827;
}

.about-section-text {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-portrait-card,
.about-team-image {
    border-radius: 1.6rem;
    overflow: hidden;
    box-shadow: 0 24px 45px rgba(15, 39, 66, 0.16);
    background: #111827;
}

.about-portrait-image {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-surface-card {
    background: #f3f4f6;
    border-radius: 1.5rem;
    padding: 1.5rem;
}

.about-info-card {
    background: #fff;
    border-radius: 1.15rem;
    padding: 1.4rem;
    box-shadow: 0 12px 24px rgba(15, 39, 66, 0.08);
    border: 1px solid rgba(15, 39, 66, 0.06);
}

.about-info-icon {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f4efe2;
    color: #b98a2d;
    margin-bottom: 1rem;
}

.about-info-card h3,
.core-value-item h3,
.about-step-item h3,
.about-service-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
}

.core-value-item {
    background: #f8f8f8;
    border-radius: 1rem;
    padding: 1.1rem 0.9rem;
    box-shadow: 0 12px 24px rgba(15, 39, 66, 0.05);
    height: 100%;
}

.core-value-icon {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15, 39, 66, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    color: #b98a2d;
}

.core-value-item p {
    color: #6b7280;
    margin-bottom: 0;
}

.about-verse-card {
    background: linear-gradient(135deg, #07163b, #0f2742);
    color: #fff;
    border-radius: 1.25rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 18px 36px rgba(15, 39, 66, 0.2);
}

.about-verse-mark {
    font-size: 2.5rem;
    color: #d8b26a;
    line-height: 1;
}

.about-verse-text {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-style: italic;
    color: #f7ecd6;
    margin: 0.8rem auto 0.6rem;
    max-width: 46rem;
}

.about-verse-ref {
    color: #d8b26a;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 700;
}

.about-step-list {
    display: grid;
    gap: 1rem;
}

.about-step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    background: #f8fafc;
    border-radius: 1rem;
    padding: 1rem 1.1rem;
    box-shadow: 0 12px 24px rgba(15, 39, 66, 0.05);
}

.about-step-num {
    color: #9ca3af;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.about-step-item p,
.about-service-card p {
    color: #6b7280;
    margin-bottom: 0;
}

.about-service-panel {
    background: #07163b;
    color: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 18px 36px rgba(15, 39, 66, 0.2);
}

.about-service-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 1rem;
    padding: 1.2rem;
}

.about-service-card h3 {
    color: #f7ecd6;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.about-stat-card {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 1.15rem;
    box-shadow: 0 12px 24px rgba(15, 39, 66, 0.05);
}

.about-stat-card strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    color: #111827;
    font-family: Georgia, 'Times New Roman', serif;
}

.about-stat-card span {
    color: #6b7280;
}

.about-cta-card {
    background: #ffffff;
    border-radius: 1.4rem;
    padding: 2.25rem;
    box-shadow: 0 14px 32px rgba(15, 39, 66, 0.08);
    border: 1px solid rgba(15, 39, 66, 0.06);
}

.about-cta-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #111827;
    margin-bottom: 0.75rem;
}

.about-cta-card p {
    color: #6b7280;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991.98px) {
    .about-hero {
        min-height: 420px;
    }

    .about-hero-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 3.5rem 0;
    }

    .about-step-item {
        grid-template-columns: 1fr;
    }
}

.about-hero-center {
    padding: 0.75rem 0 0.5rem;
    text-align: center;
}

.about-hero-center-label {
    display: inline-block;
    margin-bottom: 0.45rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.76rem;
    color: #d8b26a;
    font-weight: 700;
}

.about-hero-center-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    line-height: 1.02;
    color: #ffffff;
    margin-bottom: 0.55rem;
}

.about-hero-center-text {
    max-width: 44rem;
    margin: 0 auto;
    color: rgba(255, 248, 234, 0.88);
}

.about-hero-v2 {
    min-height: 540px;
    display: flex;
    align-items: center;
}

.about-hero-overlay-v2 {
    background: linear-gradient(180deg, rgba(7, 22, 59, 0.46), rgba(7, 22, 59, 0.82));
}

.about-hero-content-v2 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-center-panel {
    width: min(100%, 820px);
    margin: 0 auto;
    text-align: center;
    color: #fff;
    background: linear-gradient(180deg, rgba(8, 16, 34, 0.64), rgba(8, 16, 34, 0.38));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.8rem;
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 24px 50px rgba(7, 22, 59, 0.24);
    backdrop-filter: blur(8px);
}

.about-hero-mini-label {
    margin: 0.5rem 0 0.3rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.78);
}

.about-hero-title-v2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.95;
    margin-bottom: 0.8rem;
    color: #fffaf1;
}

.about-hero-subtitle-v2 {
    margin-bottom: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.88rem;
    color: rgba(255, 248, 234, 0.86);
}

.about-hero-text-v2 {
    max-width: 54rem;
    margin: 0 auto;
    color: rgba(255, 248, 234, 0.9);
    line-height: 1.8;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-hero-stat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem;
}

.about-hero-stat strong {
    display: block;
    font-size: 1rem;
    color: #f7ecd6;
    margin-bottom: 0.25rem;
}

.about-hero-stat span {
    color: rgba(255, 248, 234, 0.8);
    font-size: 0.92rem;
}

.about-hero-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.about-hero-secondary:hover,
.about-hero-secondary:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .about-hero-v2 {
        min-height: 520px;
    }

    .about-hero-stats {
        grid-template-columns: 1fr;
    }
}


.core-value-item {
    text-align: center;
}

.about-page-v3 {
    background: #f6f3ee;
}

.about-hero-v3 {
    position: relative;
    min-height: 640px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.about-hero-overlay-v3 {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(184, 138, 45, 0.18), transparent 25%),
        linear-gradient(90deg, rgba(8, 18, 40, 0.92) 0%, rgba(8, 18, 40, 0.82) 52%, rgba(8, 18, 40, 0.42) 100%);
}

.about-hero-content-v3 {
    position: relative;
    z-index: 1;
    padding: 5rem 0;
    min-height: 640px;
    display: flex;
    align-items: center;
}

.about-hero-copy {
    color: #fff7ea;
    max-width: 42rem;
}

.about-hero-kicker {
    display: inline-block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.76rem;
    color: #d8b26a;
    font-weight: 700;
}

.about-hero-mini-label {
    margin-bottom: 0.4rem;
    color: rgba(255, 248, 234, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.76rem;
}

.about-hero-title-v3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(3rem, 6vw, 5.3rem);
    line-height: 0.95;
    margin-bottom: 0.7rem;
    color: #fff6e6;
}

.about-hero-subtitle-v3 {
    max-width: 44rem;
    color: rgba(255, 248, 234, 0.88);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.about-hero-text-v3 {
    max-width: 40rem;
    margin-top: 1rem;
    color: rgba(255, 248, 234, 0.86);
    line-height: 1.8;
}

.about-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.about-hero-metric {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem 1.1rem;
    backdrop-filter: blur(4px);
}

.about-hero-metric strong {
    display: block;
    color: #fff2d6;
    margin-bottom: 0.2rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.about-hero-metric span {
    color: rgba(255, 248, 234, 0.8);
    font-size: 0.92rem;
}

.about-hero-visual {
    position: relative;
    max-width: 420px;
    margin-left: auto;
}

.about-hero-portrait-wrap {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.6rem;
    padding: 1rem;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(8px);
}

.about-hero-portrait {
    display: block;
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 1.1rem;
}

.about-hero-floating-card {
    position: absolute;
    left: -1.5rem;
    bottom: -1rem;
    max-width: 230px;
    background: #ffffff;
    color: #111827;
    border-radius: 1rem;
    padding: 1rem 1.1rem;
    box-shadow: 0 18px 36px rgba(15, 39, 66, 0.16);
}

.about-hero-floating-label {
    display: inline-block;
    margin-bottom: 0.3rem;
    color: #b88a2d;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.about-hero-floating-card strong {
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.35;
}

.core-value-item-v3 {
    background: #ffffff;
    border: 1px solid rgba(15, 39, 66, 0.06);
    border-radius: 1.2rem;
    padding: 1rem;
    box-shadow: 0 14px 30px rgba(15, 39, 66, 0.07);
}


.core-value-item-v3 .core-value-icon {
    margin-top: -1.25rem;
    position: relative;
    z-index: 1;
}

.core-value-item-v3 h3 {
    margin-top: 0.25rem;
}

.about-values .row .col-lg,
.about-values .row .col-md-4,
.about-values .row .col-6 {
    display: flex;
}

.about-values .core-value-item-v3 {
    width: 100%;
}

@media (max-width: 991.98px) {
    .about-hero-v3,
    .about-hero-content-v3 {
        min-height: auto;
    }

    .about-hero-content-v3 {
        padding: 4rem 0;
    }

    .about-hero-visual {
        max-width: 100%;
        margin-left: 0;
    }

    .about-hero-portrait {
        height: 380px;
    }

    .about-hero-floating-card {
        left: 1rem;
        right: 1rem;
        bottom: -1.2rem;
        max-width: none;
    }

    .about-hero-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .about-hero-content-v3 {
        padding: 3rem 0 4.5rem;
    }

    .about-hero-portrait {
        height: 320px;
    }
}




.hero-visual-card {
    position: relative;
    max-width: 520px;
    margin-left: auto;
}

.hero-visual-frame {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.hero-visual-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 22, 59, 0.08), rgba(7, 22, 59, 0.34));
}

.hero-visual-image {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.hero-quote-card {
    position: absolute;
    left: -1.2rem;
    right: 1.2rem;
    bottom: -1.1rem;
    background: rgba(255, 255, 255, 0.96);
    color: #111827;
    border-radius: 1.2rem;
    padding: 1rem 1.1rem;
    box-shadow: 0 18px 36px rgba(15, 39, 66, 0.18);
    border: 1px solid rgba(15, 39, 66, 0.08);
    backdrop-filter: blur(8px);
}

.hero-quote-label {
    display: inline-block;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.74rem;
    color: #b88a2d;
    font-weight: 700;
}

.hero-quote-text {
    margin-bottom: 0.55rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.08rem;
    line-height: 1.6;
}

.hero-quote-ref {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b7280;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .hero-visual-card {
        max-width: 100%;
        margin-left: 0;
        margin-top: 1rem;
    }

    .hero-visual-image {
        height: 420px;
    }

    .hero-quote-card {
        left: 1rem;
        right: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-visual-image {
        height: 340px;
    }
}

.contact-page {
    background: #f7f5f1;
}

.contact-hero {
    position: relative;
    min-height: 520px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(184, 138, 45, 0.22), transparent 18%), linear-gradient(180deg, rgba(7, 22, 59, 0.2), rgba(7, 22, 59, 0.84));
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    padding: 5rem 0;
    text-align: center;
}

.contact-hero-copy {
    color: #fff7ea;
    max-width: 50rem;
    margin: 0 auto;
}

.contact-hero-kicker {
    display: inline-block;
    margin-bottom: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.76rem;
    color: #d8b26a;
    font-weight: 700;
}

.contact-hero-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.6rem, 6vw, 5.2rem);
    line-height: 0.98;
    color: #fff9ef;
    max-width: 12ch;
    margin: 0 auto 1rem;
}

.contact-hero-text {
    max-width: 44rem;
    margin: 0 auto;
    color: rgba(255, 248, 234, 0.9);
    line-height: 1.8;
}

.contact-section {
    padding: 4.5rem 0;
}

.contact-section-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #111827;
    margin-bottom: 1rem;
}

.contact-details-card,
.contact-form-card,
.contact-map-card,
.contact-cta-card,

.contact-form-card {
    padding: 1.75rem;
}

.contact-form-intro {
    color: #6b7280;
    margin-bottom: 1.4rem;
}

.contact-form-card .form-label {
    font-weight: 600;
    color: #111827;
}

.contact-map-card {
    overflow: hidden;
    padding: 0.75rem;
}

.contact-map-image {
    border-radius: 1.2rem;
    min-height: 320px;
    object-fit: cover;
    filter: grayscale(1) contrast(1.05);
}

.contact-map-badge {
    color: #8a6420;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
}

.contact-cta-card {
    padding: 2.5rem 1.75rem;
    background: #f7f4ee;
}

.contact-cta-card h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #111827;
}

.contact-cta-card p {
    max-width: 40rem;
    margin: 0 auto;
    color: #6b7280;
}

.contact-socials {
    margin-top: 1.25rem;
}

.contact-social-label {
    display: inline-block;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.76rem;
    color: #7c6a4b;
}

.contact-social-link {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #0f2742;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(15, 39, 66, 0.14);
}

.contact-social-link:hover {
    background: #b88a2d;
    color: #fff;
}

@media (max-width: 991.98px) {
    .contact-hero {
        min-height: 460px;
    }

    .contact-hero-title {
        max-width: 16ch;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 3.5rem 0;
    }

    .contact-details-card,
    .contact-form-card,
    .contact-cta-card {
        padding: 1.25rem;
    }
}

.contact-map-card--image {
    padding: 0.75rem;
}

.contact-map-card--image .contact-map-image {
    min-height: 420px;
    object-fit: cover;
    border-radius: 1rem;
    background: #eaeaea;
}


.contact-section-lead {
    color: #6b7280;
    margin-bottom: 0.85rem;
    max-width: 34rem;
}

.contact-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    background: #f3ede1;
    color: #8a6420;
    font-size: 0.82rem;
    font-weight: 700;
}

.contact-form-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: #0f2742;
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.form-control-modern,
.contact-form-card .form-select {
    background: #fbfbfc;
    border: 1px solid #d7dde5;
    border-radius: 0.95rem;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    min-height: 50px;
}

.form-control-modern:focus,
.contact-form-card .form-select:focus {
    border-color: #b88a2d;
    box-shadow: 0 0 0 0.2rem rgba(184, 138, 45, 0.12);
}

.contact-form-card .is-invalid,
.contact-form-card .is-invalid:focus {
    border-color: #b88a2d;
    box-shadow: 0 0 0 0.18rem rgba(184, 138, 45, 0.12);
}

.contact-form-card .invalid-feedback {
    color: #8a6420;
    font-size: 0.82rem;
    margin-top: 0.35rem;
}

.contact-map-card--image {
    padding: 0.75rem;
}

.contact-map-card--image .contact-map-image {
    min-height: 420px;
    object-fit: cover;
    border-radius: 1rem;
    background: #eaeaea;
}

.contact-form-grid {
    row-gap: 1rem;
}

.contact-form-card .form-floating {
    height: 100%;
}

.contact-form-card .form-floating > .form-control,
.contact-form-card .form-floating > .form-select {
    height: calc(3.75rem + 2px);
    padding-top: 1.35rem;
    padding-bottom: 0.75rem;
}

.contact-form-card .form-floating > textarea.form-control {
    min-height: 160px;
    height: 160px;
}

.contact-form-card .form-floating > label {
    color: #6b7280;
}

.contact-form-card .form-floating > .form-control:focus ~ label,
.contact-form-card .form-floating > .form-control:not(:placeholder-shown) ~ label,
.contact-form-card .form-floating > .form-select ~ label {
    color: #8a6420;
}

.contact-submit-btn {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    font-size: 1rem;
}

.contact-map-card--location {
    padding: 1.25rem;
    background: linear-gradient(135deg, #f9f6f0, #ffffff);
}

.contact-map-location-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
    align-items: center;
    min-height: 240px;
}

.contact-map-location-copy h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #111827;
    margin-bottom: 0.65rem;
}

.contact-map-location-copy p {
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.7;
}

.contact-map-location-kicker {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: #b88a2d;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    font-weight: 700;
}

.contact-map-pin-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 180px;
    border-radius: 1.25rem;
    background: radial-gradient(circle, rgba(184, 138, 45, 0.16), transparent 60%);
}

.contact-map-pin {
    width: 6rem;
    height: 6rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0f2742;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 16px 30px rgba(15, 39, 66, 0.18);
}

@media (max-width: 767.98px) {
    .contact-map-location-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .contact-map-pin-wrap {
        min-height: 120px;
    }
}

.contact-success-alert {
    border: 1px solid rgba(25, 135, 84, 0.2);
    background: rgba(25, 135, 84, 0.08);
    color: #14532d;
    border-radius: 1rem;
}

.events-page {
    background: #f5f3ee;
}

.events-hero {
    position: relative;
    min-height: 420px;
    background: linear-gradient(180deg, rgba(6, 17, 41, 0.94), rgba(6, 17, 41, 0.96)), url('/images/christian-life-crisis-prayer.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.events-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(184, 138, 45, 0.14), transparent 30%);
}

.events-hero-content {
    z-index: 1;
    padding: 4.5rem 0;
    color: #fff7ea;
}

.events-hero-kicker {
    display: inline-block;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d8b26a;
    font-weight: 700;
    font-size: 0.78rem;
    margin-bottom: 0.85rem;
}

.events-hero-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 0.95;
    margin-bottom: 0.8rem;
}

.events-hero-text {
    max-width: 44rem;
    margin: 0 auto;
    color: rgba(255, 248, 234, 0.88);
}

.events-hero-verse {
    margin-top: 1rem;
    color: #d8b26a;
    font-style: italic;
}

.events-filter-section {
    margin-top: -1.25rem;
    padding-bottom: 2rem;
}

.events-filter-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.7rem 1.15rem;
    margin: 0.35rem;
    border-radius: 999px;
    background: #fff;
    color: #4b5563;
    box-shadow: 0 12px 24px rgba(15, 39, 66, 0.06);
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1;
    vertical-align: middle;
}

.events-filter-pill.active {
    background: #07163b;
    color: #fff;
}

.events-section {
    padding: 4.5rem 0;
}

.events-feature-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 45px rgba(15, 39, 66, 0.12);
}

.events-feature-image-wrap {
    min-height: 100%;
}

.events-feature-image {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.events-feature-body {
    padding: 2.25rem;
}

.events-feature-tag {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: #b88a2d;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.74rem;
    font-weight: 700;
}

.events-feature-body h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.events-feature-meta {
    color: #8a6420;
    font-weight: 700;
    margin-bottom: 1rem;
}

.events-feature-text {
    color: #4b5563;
    line-height: 1.8;
}

.events-calendar-list {
    display: grid;
    gap: 0.9rem;
}

.events-calendar-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 12px 24px rgba(15, 39, 66, 0.06);
}

.events-calendar-day {
    width: 3rem;
    height: 3rem;
    border-radius: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #07163b;
    color: #fff;
    font-weight: 700;
}

.events-calendar-panel {
    background: #fff;
    border-radius: 1.5rem;
    min-height: 320px;
    box-shadow: 0 20px 40px rgba(15, 39, 66, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.events-calendar-placeholder {
    text-align: center;
    color: #9ca3af;
}

.events-calendar-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.events-gallery-card {
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 24px rgba(15, 39, 66, 0.08);
}

.events-gallery-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.events-cta-card {
    background: #07163b;
    color: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem 1.75rem;
    box-shadow: 0 20px 45px rgba(15, 39, 66, 0.14);
}

.events-cta-card h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.6rem;
}

.events-cta-card p {
    color: rgba(255, 248, 234, 0.82);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.events-cta-verse {
    color: #d8b26a !important;
    font-style: italic;
}

@media (max-width: 991.98px) {
    .events-feature-card {
        grid-template-columns: 1fr;
    }

    .events-feature-image {
        min-height: 280px;
    }
}

@media (max-width: 767.98px) {
    .events-section {
        padding: 3.5rem 0;
    }

    .events-feature-body {
        padding: 1.5rem;
    }
}

.gallery-page {
    background: #f6f2ea;
}

.gallery-hero {
    position: relative;
    min-height: 560px;
    background: linear-gradient(90deg, rgba(250, 245, 236, 0.95) 0%, rgba(250, 245, 236, 0.9) 52%, rgba(250, 245, 236, 0.7) 100%), url('/images/christian-life-crisis-prayer.jpg') center/cover no-repeat;
    overflow: hidden;
}

.gallery-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 248, 236, 0.88) 0%, rgba(255, 248, 236, 0.72) 52%, rgba(255, 248, 236, 0.38) 100%);
}

.gallery-hero-inner {
    position: relative;
    z-index: 1;
    padding: 2rem 0 4rem;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.gallery-side-nav {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 39, 66, 0.06);
    border-radius: 1.2rem;
    padding: 1.2rem;
    box-shadow: 0 16px 30px rgba(15, 39, 66, 0.08);
}

.gallery-side-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.55rem;
    color: #1f2937;
}

.gallery-side-subtitle {
    color: #8a6420;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.gallery-side-links {
    display: grid;
    gap: 0.55rem;
}

.gallery-side-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 0.9rem;
    border-radius: 999px;
    background: transparent;
    color: #506070;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.gallery-side-link::before {
    content: '';
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #c8a46b;
    opacity: 0.5;
}

.gallery-side-link:hover,
.gallery-side-link.active {
    background: #fff5d9;
    color: #7c5b18;
}

.gallery-side-link.active::before,
.gallery-side-link:hover::before {
    opacity: 1;
}

.gallery-hero-copy {
    max-width: 50rem;
    margin-left: auto;
    padding-top: 2rem;
}

.gallery-hero-kicker {
    display: inline-block;
    margin-bottom: 0.6rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.76rem;
    color: #8a6420;
    font-weight: 700;
}

.gallery-hero-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.96;
    color: #111827;
    max-width: 10ch;
}

.gallery-hero-text {
    max-width: 40rem;
    color: #606060;
    font-size: 1.05rem;
    line-height: 1.8;
}

.gallery-hero-quote {
    margin-top: 1.25rem;
    max-width: 45rem;
    padding: 1rem 1.2rem;
    border-left: 3px solid #b88a2d;
    background: rgba(255, 255, 255, 0.72);
    color: #5c4a2e;
    box-shadow: 0 12px 24px rgba(15, 39, 66, 0.06);
}

.gallery-section {
    padding: 4rem 0;
}

.gallery-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 1rem;
    align-items: center;
}

.gallery-feature-media {
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 22px 40px rgba(15, 39, 66, 0.18);
}

.gallery-feature-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.gallery-feature-card {
    background: #fff;
    border-radius: 1.2rem;
    padding: 1.4rem 1.5rem;
    box-shadow: 0 18px 34px rgba(15, 39, 66, 0.12);
    margin-left: -2rem;
    position: relative;
    z-index: 1;
}

.gallery-feature-tag,
.gallery-card-kicker {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8a6420;
    font-weight: 700;
}

.gallery-feature-card h2,
.gallery-card-body h3,
.gallery-video-caption h3,
.gallery-cta-card h2 {
    font-family: Georgia, 'Times New Roman', serif;
}

.gallery-feature-card h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.02;
    color: #111827;
}

.gallery-feature-card p {
    color: #5b6470;
    line-height: 1.8;
}

.gallery-card-modern {
    background: #fff;
    border-radius: 1.1rem;
    overflow: hidden;
    box-shadow: 0 16px 30px rgba(15, 39, 66, 0.08);
}

.gallery-card-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.gallery-card-body {
    padding: 1rem 1rem 1.1rem;
}

.gallery-card-body h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.gallery-card-body p {
    margin-bottom: 0;
    color: #5b6470;
}

.gallery-video-section {
    padding: 0 0 4rem;
}

.gallery-video-shell {
    background: #07163b;
    color: #fff;
    border-radius: 1.6rem;
    padding: 2rem;
    box-shadow: 0 24px 50px rgba(15, 39, 66, 0.18);
}

.gallery-video-main {
    padding-right: 0.5rem;
}

.gallery-video-player {
    border-radius: 1rem;
    overflow: hidden;
    background: #000;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.gallery-video-caption h3 {
    font-size: 1.5rem;
    color: #fff;
}

.gallery-video-caption p {
    color: rgba(255, 248, 234, 0.82);
}

.gallery-video-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.gallery-video-item {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 0.85rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 0.7rem;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-video-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    color: inherit;
}

.gallery-video-thumb {
    width: 112px;
    height: 74px;
    object-fit: cover;
    border-radius: 0.75rem;
}

.gallery-video-item h3 {
    font-size: 0.98rem;
    margin-bottom: 0.25rem;
    color: #fff;
}

.gallery-video-item p {
    font-size: 0.84rem;
    color: rgba(255, 248, 234, 0.78);
}

.gallery-youtube-btn {
    border-radius: 999px;
    padding: 0.8rem 1.1rem;
    font-weight: 700;
}

.gallery-cta-section {
    padding: 0 0 4.5rem;
}

.gallery-cta-card {
    background: #fff;
    border-radius: 1.8rem;
    padding: 2.6rem 1.5rem;
    box-shadow: 0 18px 36px rgba(15, 39, 66, 0.08);
}

.gallery-cta-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #111827;
}

.gallery-cta-card p {
    max-width: 42rem;
    margin: 0.6rem auto 0;
    color: #5b6470;
}

@media (max-width: 991.98px) {
    .gallery-hero {
        min-height: auto;
    }

    .gallery-hero-inner {
        min-height: auto;
        padding: 2rem 0 3.5rem;
    }

    .gallery-hero-copy {
        margin-left: 0;
        padding-top: 0;
    }

    .gallery-feature-grid {
        grid-template-columns: 1fr;
    }

    .gallery-feature-card {
        margin-left: 0;
    }
}

@media (max-width: 767.98px) {
    .gallery-section,
    .gallery-video-section,
    .gallery-cta-section {
        padding-bottom: 3.5rem;
    }

    .gallery-hero-title {
        max-width: 12ch;
    }

    .gallery-feature-image {
        height: 320px;
    }

    .gallery-video-shell {
        padding: 1.25rem;
    }

    .gallery-video-item {
        grid-template-columns: 1fr;
    }

    .gallery-video-thumb {
        width: 100%;
        height: 180px;
    }
}
.leaders-page {
    background: #f6f2ea;
}

.leaders-hero {
    position: relative;
    min-height: 520px;
    background: linear-gradient(180deg, rgba(14, 22, 38, 0.18), rgba(14, 22, 38, 0.72)), url('/images/christian-life-crisis-prayer-god.jpg') center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.leaders-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 17, 41, 0.25), rgba(6, 17, 41, 0.72));
}

.leaders-hero-content {
    position: relative;
    z-index: 1;
    padding: 4.5rem 0;
    color: #fff7ea;
}

.leaders-hero-kicker {
    display: inline-block;
    margin-bottom: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: #d8b26a;
    font-weight: 700;
}

.leaders-hero-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.6rem, 6vw, 4.9rem);
    line-height: 0.95;
    margin-bottom: 0.8rem;
}

.leaders-hero-text {
    max-width: 42rem;
    margin: 0 auto;
    color: rgba(255, 248, 234, 0.88);
    font-size: 1.05rem;
}

.leaders-hero-verse {
    margin: 1.4rem auto 0;
    max-width: 44rem;
    padding: 1rem 1.2rem;
    border-left: 3px solid #d8b26a;
    background: rgba(7, 22, 59, 0.58);
    color: #f6e7c0;
    font-style: italic;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.leaders-section {
    padding: 4rem 0;
}

.leaders-section-title,
.leaders-feature-badge strong,
.leader-card-body h3,
.leader-mini-card h3,
.leaders-cta-card h2 {
    font-family: Georgia, 'Times New Roman', serif;
}

.leaders-section-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    color: #111827;
    line-height: 1.08;
}

.leaders-section-text {
    color: #5b6470;
    line-height: 1.8;
}

.leaders-feature-card {
    position: relative;
    max-width: 460px;
    margin-left: auto;
    border-radius: 1.4rem;
}

.leaders-feature-image-wrap {
    border-radius: 1.4rem;
    overflow: hidden;
    box-shadow: 0 22px 45px rgba(15, 39, 66, 0.18);
}

.leaders-feature-image {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.leaders-feature-badge {
    position: absolute;
    left: -1.1rem;
    bottom: -1rem;
    background: #b88a2d;
    color: #fff;
    border-radius: 1rem;
    padding: 1rem 1.15rem;
    max-width: 240px;
    box-shadow: 0 18px 36px rgba(15, 39, 66, 0.18);
}

.leaders-feature-badge p {
    margin-bottom: 0.2rem;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.leaders-feature-badge strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1.1;
}

.leader-card-modern {
    background: #fff;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 16px 30px rgba(15, 39, 66, 0.08);
}

.leader-card-image-wrap {
    background: #0f172a;
}

.leader-card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.leader-card-body {
    padding: 1rem 1rem 1.15rem;
}

.leader-card-kicker {
    display: inline-block;
    margin-bottom: 0.45rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: #8a6420;
    font-weight: 700;
}

.leader-card-body h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.leader-card-body p {
    margin-bottom: 0;
    color: #5b6470;
}

.leaders-support-section {
    background: #07163b;
    color: #fff;
}

.leaders-support-panel {
    border-radius: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.leaders-support-section .section-title-center,
.leaders-support-section .text-muted {
    color: #fff !important;
}

.leader-mini-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1rem;
    color: #fff;
}

.leader-mini-icon {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(216, 178, 106, 0.16);
    color: #d8b26a;
    margin-bottom: 0.75rem;
}

.leader-mini-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.leader-mini-card p {
    margin-bottom: 0;
    color: rgba(255, 248, 234, 0.82);
    font-size: 0.9rem;
}

.leaders-cta-section {
    padding-top: 0;
}

.leaders-cta-card {
    background: #fff;
    border-radius: 1.8rem;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 18px 36px rgba(15, 39, 66, 0.08);
}

.leaders-cta-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #111827;
}

.leaders-cta-card p {
    max-width: 42rem;
    margin: 0.6rem auto 0;
    color: #5b6470;
}

@media (max-width: 991.98px) {
    .leaders-hero {
        min-height: auto;
    }

    .leaders-feature-card {
        margin-left: 0;
        max-width: 100%;
    }

    .leaders-feature-image {
        height: 380px;
    }

    .leaders-feature-badge {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .leaders-section {
        padding: 3.5rem 0;
    }

    .leaders-support-panel {
        padding: 1.25rem;
    }

    .leaders-feature-image {
        height: 320px;
    }
}
.ministries-page {
    background: #f6f2ea;
}

.ministries-hero {
    position: relative;
    min-height: 520px;
    background: linear-gradient(180deg, rgba(14, 22, 38, 0.2), rgba(14, 22, 38, 0.72)), url('/images/christian-life-crisis-prayer.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ministries-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 22, 59, 0.3), rgba(7, 22, 59, 0.68));
}

.ministries-hero-content {
    position: relative;
    z-index: 1;
    padding: 4.5rem 0;
    color: #fff7ea;
}

.ministries-hero-kicker {
    display: inline-block;
    margin-bottom: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: #d8b26a;
    font-weight: 700;
}

.ministries-hero-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.95;
    margin-bottom: 0.8rem;
}

.ministries-hero-text {
    color: #e7d8b2;
    font-style: italic;
    font-size: 1.05rem;
}

.ministries-section {
    padding: 4rem 0;
}

.ministries-intro-text,
.ministries-feature-copy p,
.ministry-card-body p,
.ministries-cta-card p {
    color: #5b6470;
    line-height: 1.8;
}

.ministries-feature-card,
.ministry-card-modern,
.ministries-cta-card {
    background: #fff;
    border-radius: 1.35rem;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(15, 39, 66, 0.08);
}

.ministries-feature-card {
    position: relative;
}

.ministries-feature-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.ministries-feature-copy {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 1rem;
    padding: 1.1rem 1.2rem;
    box-shadow: 0 16px 30px rgba(15, 39, 66, 0.16);
}

.ministries-feature-label,
.ministry-card-kicker {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: #8a6420;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
}

.ministries-feature-copy h3,
.ministry-card-body h3,
.ministries-cta-card h2 {
    font-family: Georgia, 'Times New Roman', serif;
}

.ministries-feature-copy h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.ministry-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.ministry-card-body {
    padding: 1rem 1rem 1.15rem;
}

.ministry-card-body h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.ministry-card-wide .ministry-card-image {
    height: 320px;
}

.ministries-cta-section {
    padding-top: 0;
}

.ministries-cta-card {
    padding: 2.6rem 1.5rem;
}

.ministries-cta-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #111827;
}

@media (max-width: 991.98px) {
    .ministries-hero {
        min-height: auto;
    }

    .ministries-feature-copy {
        position: static;
        max-width: none;
        margin: -1.25rem 1rem 1rem;
    }

    .ministry-card-wide .ministry-card-image,
    .ministry-card-image {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .ministries-section {
        padding: 3.5rem 0;
    }

    .ministries-feature-image {
        height: 300px;
    }

    .ministries-cta-card {
        padding: 1.5rem;
    }
}
.members-registration-page {
    background:
        radial-gradient(circle at top left, rgba(184, 138, 45, 0.12), transparent 24%),
        radial-gradient(circle at top right, rgba(15, 39, 66, 0.08), transparent 28%),
        linear-gradient(180deg, #f7f3ee 0%, #f5f1ea 100%);
}

.member-registration-hero {
    padding: 2rem 0 4rem;
}

.member-guide-card,
.member-form-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 39, 66, 0.08);
    border-radius: 1.8rem;
    box-shadow: 0 22px 50px rgba(15, 39, 66, 0.12);
    backdrop-filter: blur(12px);
}

.member-guide-card {
    position: sticky;
    top: 6.5rem;
    padding: 1.25rem;
    transform: translateY(var(--guide-offset, 0px));
    transition: transform 0.35s ease;
}

.member-guide-scene {
    position: relative;
    min-height: 360px;
    border-radius: 1.4rem;
    overflow: hidden;
    background: linear-gradient(180deg, #0b1530 0%, #111827 100%);
    perspective: 1200px;
}

.member-guide-glow {
    position: absolute;
    inset: 12% 10% auto;
    height: 180px;
    background: radial-gradient(circle, rgba(184, 138, 45, 0.28), transparent 65%);
    filter: blur(8px);
}

.member-guide-orbit {
    position: absolute;
    inset: auto 10% 20% auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: orbitPulse 6s ease-in-out infinite;
}

.member-guide-avatar {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 220px;
    height: 320px;
    transform: translateX(-50%) translateY(0) rotateX(4deg) rotateY(-8deg);
    transform-style: preserve-3d;
    transition: transform 0.35s ease;
    animation: guideFloat 5.5s ease-in-out infinite;
}

.member-guide-avatar::before {
    content: '';
    position: absolute;
    inset: 10px 18px auto;
    height: 240px;
    border-radius: 28px 28px 20px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
    transform: translateZ(-10px);
}

.member-guide-shadow {
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 150px;
    height: 24px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(0, 0, 0, 0.55), transparent 70%);
    filter: blur(8px);
}

.member-guide-head {
    position: absolute;
    left: 50%;
    top: 26px;
    width: 90px;
    height: 110px;
    transform: translateX(-50%);
    border-radius: 48% 48% 40% 40%;
    background: linear-gradient(180deg, #f3c69c 0%, #d89c68 100%);
    box-shadow: inset 0 -10px 18px rgba(0, 0, 0, 0.14), 0 10px 24px rgba(0, 0, 0, 0.2);
}

.member-guide-head::before {
    content: '';
    position: absolute;
    inset: -10px -10px auto;
    height: 36px;
    border-radius: 48% 48% 30% 30%;
    background: linear-gradient(180deg, #0a1020 0%, #1f2a3b 100%);
}

.member-guide-eye {
    position: absolute;
    top: 48px;
    width: 10px;
    height: 6px;
    border-radius: 999px;
    background: #1f2937;
}

.member-guide-eye-left { left: 24px; }
.member-guide-eye-right { right: 24px; }

.member-guide-nose {
    position: absolute;
    left: 50%;
    top: 58px;
    width: 8px;
    height: 16px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: rgba(121, 70, 30, 0.25);
}

.member-guide-mouth {
    position: absolute;
    left: 50%;
    top: 79px;
    width: 24px;
    height: 10px;
    transform: translateX(-50%);
    border-bottom: 3px solid rgba(111, 57, 18, 0.7);
    border-radius: 0 0 999px 999px;
}

.member-guide-neck {
    position: absolute;
    left: 50%;
    top: 128px;
    width: 28px;
    height: 28px;
    transform: translateX(-50%);
    border-radius: 12px;
    background: linear-gradient(180deg, #cc8c57, #b06e3f);
}

.member-guide-body {
    position: absolute;
    left: 50%;
    top: 142px;
    width: 136px;
    height: 158px;
    transform: translateX(-50%);
    border-radius: 28px 28px 24px 24px;
    background: linear-gradient(180deg, #17314d 0%, #0d1b30 100%);
    box-shadow: inset 0 16px 22px rgba(255, 255, 255, 0.08), 0 16px 30px rgba(0, 0, 0, 0.3);
}

.member-guide-body::before {
    content: '';
    position: absolute;
    inset: 18px 54px 22px;
    border-radius: 18px;
    background: linear-gradient(180deg, #c83f2d 0%, #ffb147 100%);
    transform: skewX(-6deg);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.member-guide-arm {
    position: absolute;
    top: 168px;
    width: 82px;
    height: 22px;
    border-radius: 999px;
    background: linear-gradient(180deg, #244262 0%, #13243a 100%);
    box-shadow: inset 0 4px 6px rgba(255, 255, 255, 0.08);
    transform-origin: center center;
}

.member-guide-arm-left {
    left: 2px;
    transform: rotate(24deg);
}

.member-guide-arm-right {
    right: 2px;
    transform: rotate(-24deg);
}

.member-guide-pen {
    position: absolute;
    right: 18px;
    top: 148px;
    width: 26px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #b88a2d, #f5d48a);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
    transform: rotate(18deg);
}

.member-guide-avatar.is-typing {
    animation: guideNod 0.28s ease-in-out;
}

.member-guide-avatar[data-step="1"] .member-guide-arm-right { transform: rotate(-16deg) translateX(-2px); }
.member-guide-avatar[data-step="2"] .member-guide-arm-right { transform: rotate(2deg) translateX(4px); }
.member-guide-avatar[data-step="3"] .member-guide-arm-right { transform: rotate(18deg) translateX(8px); }
.member-guide-avatar[data-step="4"] .member-guide-arm-right { transform: rotate(32deg) translateX(10px); }
.member-guide-avatar[data-step="5"] .member-guide-arm-right { transform: rotate(46deg) translateX(12px); }

.member-guide-copy {
    padding: 1.2rem 0.35rem 0.35rem;
}

.member-guide-kicker {
    margin-bottom: 0.55rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8a6420;
    font-size: 0.74rem;
    font-weight: 700;
}

.member-guide-copy h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 3.55rem);
    line-height: 0.95;
    color: #0f172a;
    margin-bottom: 0.85rem;
}

.member-guide-text {
    color: #4f5564;
    font-size: 1.02rem;
    line-height: 1.8;
}

.member-guide-note {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    margin-top: 1.2rem;
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 39, 66, 0.08);
    border-radius: 1rem;
    color: #5b6470;
    box-shadow: 0 10px 20px rgba(15, 39, 66, 0.06);
}

.member-form-card {
    padding: 1.5rem;
}

.member-form-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.member-step-badge {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: #8a6420;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.76rem;
    font-weight: 700;
}

.member-form-header h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    color: #111827;
    margin-bottom: 0;
}

.member-progress-stat {
    font-size: 1.15rem;
    font-weight: 800;
    color: #8a6420;
}

.member-progress-track {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: #ece7de;
    margin: 1rem 0 0.7rem;
    overflow: hidden;
}

.member-progress-bar {
    height: 100%;
    width: 20%;
    border-radius: inherit;
    background: linear-gradient(90deg, #8a6420, #b88a2d);
    transition: width 0.35s ease;
}

.member-step-dots {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.member-step-dots span {
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: #e7e1d7;
    transition: background 0.25s ease, transform 0.25s ease;
}

.member-step-dots span.is-active,
.member-step-dots span.is-complete {
    background: linear-gradient(90deg, #8a6420, #b88a2d);
}

.member-step-dots span.is-active {
    transform: scaleY(1.3);
}

.member-success-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.1rem;
    margin: 1rem 0 1.25rem;
    background: rgba(25, 135, 84, 0.08);
    border: 1px solid rgba(25, 135, 84, 0.16);
    border-radius: 1rem;
    color: #14532d;
}

.member-success-icon {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #198754;
    color: #fff;
    font-weight: 800;
    flex-shrink: 0;
}

.member-success-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    margin-bottom: 0.15rem;
}

.member-step-panel {
    display: none;
    padding: 1.35rem;
    margin-top: 1rem;
    background: #fafafa;
    border: 1px solid rgba(15, 39, 66, 0.06);
    border-radius: 1.3rem;
}

.member-step-panel.is-active {
    display: block;
    animation: fadeSlideIn 0.4s ease;
}

.member-panel-title {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.member-panel-index {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: #07163b;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    flex-shrink: 0;
}

.member-panel-title h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    color: #111827;
}

.member-panel-title p {
    margin-bottom: 0;
    color: #5b6470;
}

.member-label {
    color: #111827;
    font-weight: 600;
}

.member-control {
    border-radius: 0.95rem;
    border-color: #d8dde5;
    min-height: 50px;
    background: #fff;
}

.member-control:focus {
    border-color: #b88a2d;
    box-shadow: 0 0 0 0.2rem rgba(184, 138, 45, 0.12);
}

.member-textarea {
    min-height: 140px;
}

.member-option-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.member-option-card {
    position: relative;
    min-height: 58px;
    border: 1px solid #d8dde5;
    border-radius: 1rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.member-option-card:hover {
    transform: translateY(-2px);
    border-color: #b88a2d;
    box-shadow: 0 10px 20px rgba(15, 39, 66, 0.06);
}

.member-option-card input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.member-option-card:has(input:checked) {
    border-color: #8a6420;
    background: linear-gradient(180deg, rgba(184, 138, 45, 0.08), rgba(184, 138, 45, 0.02));
    box-shadow: 0 12px 24px rgba(138, 100, 32, 0.12);
}

.member-review-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.member-review-card {
    padding: 1rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(15, 39, 66, 0.08);
}

.member-review-card-wide {
    grid-column: span 2;
}

.member-review-card span {
    display: block;
    margin-bottom: 0.35rem;
    color: #8a6420;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.74rem;
    font-weight: 700;
}

.member-review-card strong {
    color: #111827;
    font-size: 0.98rem;
    line-height: 1.6;
}

.member-consent-box {
    margin-top: 1rem;
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(15, 39, 66, 0.08);
}

.member-consent-label {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: #4f5564;
}

.member-consent-label input {
    margin-top: 0.25rem;
    accent-color: #8a6420;
    flex-shrink: 0;
}

.member-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.member-btn-primary,
.member-btn-secondary {
    border-radius: 999px;
    padding: 0.9rem 1.35rem;
    font-weight: 700;
}

.member-btn-primary {
    background: linear-gradient(135deg, #8a6420, #b88a2d);
    color: #fff;
    border: 0;
}

.member-btn-primary:hover,
.member-btn-primary:focus {
    color: #fff;
    background: linear-gradient(135deg, #7b591b, #a87c27);
}

.member-btn-secondary {
    background: #fff;
    color: #111827;
    border: 1px solid #d8dde5;
}

.member-draft-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.member-draft-btn {
    border: 0;
    background: transparent;
    color: #8a6420;
    font-weight: 700;
    padding: 0;
    text-decoration: underline;
}

.member-draft-btn-light {
    color: #526076;
}

@keyframes guideFloat {
    0%, 100% { transform: translateX(-50%) translateY(0) rotateX(4deg) rotateY(-8deg); }
    50% { transform: translateX(-50%) translateY(-8px) rotateX(4deg) rotateY(-4deg); }
}

@keyframes guideNod {
    0% { transform: translateX(-50%) translateY(0) rotateX(4deg) rotateY(-8deg) rotate(0deg); }
    50% { transform: translateX(-50%) translateY(1px) rotateX(8deg) rotateY(-4deg) rotate(1deg); }
    100% { transform: translateX(-50%) translateY(0) rotateX(4deg) rotateY(-8deg) rotate(0deg); }
}

@keyframes orbitPulse {
    0%, 100% { transform: scale(1); opacity: 0.65; }
    50% { transform: scale(1.08); opacity: 1; }
}

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

@media (max-width: 991.98px) {
    .member-guide-card {
        position: static;
        top: auto;
        margin-bottom: 1rem;
    }

    .member-registration-hero {
        padding-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .member-form-card {
        padding: 1rem;
    }

    .member-step-panel {
        padding: 1rem;
    }

    .member-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .member-option-group,
    .member-review-grid {
        grid-template-columns: 1fr;
    }

    .member-review-card-wide {
        grid-column: auto;
    }
}
.auth-page {
    background: #f6f2ea;
}

.auth-page-shell {
    min-height: calc(100vh - 160px);
    background: #f6f2ea;
}

.auth-split-layout {
    min-height: calc(100vh - 160px);
}

.auth-visual-panel,
.auth-form-panel {
    min-height: calc(100vh - 160px);
}

.auth-visual-panel {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    color: #fff;
    background: linear-gradient(180deg, rgba(7, 22, 59, 0.38), rgba(7, 22, 59, 0.82)), url('/images/christian-life-crisis-prayer.jpg') center/cover no-repeat;
}

.auth-visual-panel-register {
    background: linear-gradient(180deg, rgba(7, 22, 59, 0.32), rgba(7, 22, 59, 0.78)), url('/images/christian-life-crisis-prayer-god.jpg') center/cover no-repeat;
}

.auth-visual-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(184, 138, 45, 0.18), transparent 35%);
}

.auth-visual-content {
    position: relative;
    z-index: 1;
    max-width: 34rem;
}

.auth-visual-kicker {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: #f6d79a;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
}

.auth-visual-content h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.95;
    margin-bottom: 1rem;
}

.auth-visual-content p {
    max-width: 34rem;
    font-size: 1.05rem;
    color: rgba(255, 248, 234, 0.9);
    line-height: 1.8;
}

.auth-visual-quote {
    margin-top: 1.5rem;
    max-width: 32rem;
    padding: 1rem 1.1rem;
    border-left: 3px solid #d8b26a;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0 1rem 1rem 0;
    backdrop-filter: blur(6px);
}

.auth-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.82);
}

.auth-form-wrap {
    width: 100%;
    max-width: 620px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 1.75rem;
    border: 1px solid rgba(15, 39, 66, 0.08);
    box-shadow: 0 24px 50px rgba(15, 39, 66, 0.1);
}

.auth-brand-row {
    margin-bottom: 1rem;
}

.auth-brand-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: #07163b;
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.auth-form-wrap h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #111827;
    margin-bottom: 0.5rem;
}

.auth-lead {
    color: #5b6470;
    margin-bottom: 1.75rem;
}

.auth-label {
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 700;
}

.auth-control {
    min-height: 56px;
    border-radius: 1rem;
    border-color: #d8dde5;
    background: #fbfbfc;
    padding-left: 1rem;
    padding-right: 1rem;
}

.auth-control:focus {
    border-color: #b88a2d;
    box-shadow: 0 0 0 0.2rem rgba(184, 138, 45, 0.12);
}

.auth-check {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4f5564;
    user-select: none;
}

.auth-check input {
    accent-color: #8a6420;
}

.auth-link {
    color: #8a6420;
    font-weight: 700;
    text-decoration: none;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-small-text {
    color: #5b6470;
}

.auth-alert {
    border-radius: 1rem;
}

.auth-submit-btn {
    min-height: 56px;
    border-radius: 999px;
    background: linear-gradient(135deg, #8a6420, #b88a2d);
    border: 0;
    color: #fff;
    font-weight: 700;
    font-size: 1.02rem;
    box-shadow: 0 16px 28px rgba(138, 100, 32, 0.2);
}

.auth-submit-btn:hover,
.auth-submit-btn:focus {
    color: #fff;
    background: linear-gradient(135deg, #7b591b, #a87c27);
}

@media (max-width: 991.98px) {
    .auth-split-layout,
    .auth-visual-panel,
    .auth-form-panel {
        min-height: auto;
    }

    .auth-visual-panel,
    .auth-form-panel {
        padding: 1.25rem;
    }

    .auth-form-wrap {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .auth-visual-panel {
        padding: 2rem 1.25rem;
    }

    .auth-form-wrap {
        padding: 1.25rem;
    }
}
.admin-shell {
    background: #f6f8fc;
    color: #111827;
    font-size: 0.94rem;
}

.admin-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar {
    display: flex;
    flex-direction: column;
    background: #f7f9fd;
    border-right: 1px solid rgba(15, 39, 66, 0.08);
    padding: 1.5rem 1.15rem;
}

.admin-sidebar-brand {
    padding: 0.5rem 0.5rem 1.5rem;
}

.admin-brand-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    color: #0f172a;
    font-weight: 700;
}

.admin-brand-subtitle {
    color: #6b7280;
    font-size: 0.82rem;
}

.admin-nav {
    display: grid;
    gap: 0.45rem;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    border-radius: 999px;
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    font-size: 0.92rem;
}

.admin-nav-item:hover,
.admin-nav-item.active {
    background: #ffffff;
    color: #07163b;
    box-shadow: 0 14px 24px rgba(15, 39, 66, 0.08);
    transform: translateX(2px);
}

.admin-nav-icon {
    width: 1.35rem;
    display: inline-flex;
    justify-content: center;
    font-size: 1rem;
}

.admin-sidebar-footer {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(15, 39, 66, 0.08);
    display: grid;
    gap: 0.55rem;
}

.admin-link-small {
    color: #8a6420;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
}

.admin-main {
    min-width: 0;
    position: relative;
    overflow: visible;
}

.admin-topbar {
    height: 74px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.25rem;
    padding: 0 1.5rem;
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 39, 66, 0.08);
    position: sticky;
    top: 0;
    z-index: 1200;
    overflow: visible;
}

.admin-topbar-brand {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
    color: #0f172a;
    font-weight: 700;
}

.admin-topbar-search {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    max-width: 560px;
    margin: 0 auto;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: #eef3f9;
    color: #94a3b8;
}

.admin-topbar-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 0.92rem;
}

.admin-topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1201;
}

.admin-topbar-icon {
    width: 2.35rem;
    height: 2.35rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #0f172a;
    font-size: 1.05rem;
}

.admin-avatar {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid #d8c8a0;
}

.admin-content {
    padding: 1.5rem;
}

.admin-dashboard-page {
    display: grid;
    gap: 1.35rem;
}

.admin-hero {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.admin-hero h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 3.3rem);
    margin-bottom: 0.25rem;
    color: #0f172a;
}

.admin-hero-kicker {
    margin-bottom: 0.35rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8a6420;
    font-size: 0.75rem;
    font-weight: 700;
}

.admin-hero-text {
    color: #5b6470;
    margin-bottom: 0;
}

.admin-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.admin-pill-btn {
    border-radius: 999px;
    padding: 0.8rem 1.2rem;
    background: #fff;
    color: #111827;
    border: 1px solid rgba(15, 39, 66, 0.12);
    box-shadow: 0 12px 24px rgba(15, 39, 66, 0.08);
    font-size: 0.82rem;
    font-weight: 700;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.admin-stat-card {
    min-height: 160px;
    padding: 1.1rem;
    border-radius: 1.35rem;
    background: #fff;
    box-shadow: 0 16px 30px rgba(15, 39, 66, 0.08);
    border: 1px solid rgba(15, 39, 66, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.admin-stat-icon {
    width: 2.95rem;
    height: 2.95rem;
    border-radius: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    background: #e7eefc;
}

.admin-tone-primary .admin-stat-icon { background: #d7e3ff; }
.admin-tone-warning .admin-stat-icon { background: #f8d88a; }
.admin-tone-success .admin-stat-icon { background: #def3df; }
.admin-tone-secondary .admin-stat-icon { background: #e6e6e6; }

.admin-stat-label {
    margin-top: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #667085;
    font-weight: 700;
}

.admin-stat-value {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    color: #0f172a;
    line-height: 1;
}

.admin-panels-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.25rem;
}

.admin-panel-card {
    background: #fff;
    border-radius: 1.35rem;
    padding: 1.35rem;
    box-shadow: 0 16px 30px rgba(15, 39, 66, 0.08);
    border: 1px solid rgba(15, 39, 66, 0.06);
}

.admin-panel-card h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.65rem;
    margin-bottom: 0;
    color: #0f172a;
}

.admin-panel-wide {
    grid-column: span 1;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    font-size: 0.84rem;
}

.admin-table thead th {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #667085;
    background: #f8fafc;
}

.admin-table td,
.admin-table th {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.admin-subtext {
    font-size: 0.8rem;
    color: #667085;
}

.admin-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    background: #eef6ec;
    color: #1f7a3a;
    font-size: 0.72rem;
    font-weight: 700;
}

.admin-action-btn {
    font-size: 0.72rem;
    padding: 0.28rem 0.55rem;
    border-radius: 0.65rem;
    line-height: 1.2;
}

.admin-text-link {
    color: #8a6420;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
}

.admin-message-list,
.admin-mini-list {
    display: grid;
    gap: 0.85rem;
}

.admin-message-item,
.admin-mini-item {
    padding: 1rem;
    border-radius: 1rem;
    background: #fafafa;
    border: 1px solid rgba(15, 39, 66, 0.06);
}

.admin-message-item p,
.admin-mini-item p {
    font-size: 0.86rem;
    color: #475467;
}

.admin-alert {
    border-radius: 1rem;
    font-size: 0.9rem;
}

.admin-form-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #111827;
}

.admin-control {
    min-height: 46px;
    font-size: 0.88rem;
    border-radius: 0.9rem;
    border-color: #d8dde5;
}

.admin-control:focus {
    border-color: #b88a2d;
    box-shadow: 0 0 0 0.2rem rgba(184, 138, 45, 0.12);
}

.admin-pagination-wrap .pagination {
    font-size: 0.84rem;
}

.admin-pagination-wrap .page-link {
    border-radius: 0.7rem;
}

@media (max-width: 1199.98px) {
    .admin-layout {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .admin-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-panels-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        border-right: 0;
        border-bottom: 1px solid rgba(15, 39, 66, 0.08);
        padding: 1rem;
    }

    .admin-sidebar-brand {
        padding: 0 0 1rem;
    }

    .admin-nav {
        grid-auto-flow: column;
        grid-auto-columns: minmax(150px, 1fr);
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 0.25rem;
        scrollbar-width: thin;
    }

    .admin-nav-item {
        min-height: 52px;
        white-space: nowrap;
    }

    .admin-sidebar-footer {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .admin-topbar {
        grid-template-columns: 1fr;
        height: auto;
        padding: 1rem 1.25rem;
        gap: 0.85rem;
        justify-items: stretch;
    }

    .admin-topbar-search {
        max-width: none;
        width: 100%;
        order: 3;
        margin: 0;
    }

    .admin-topbar-actions {
        justify-content: flex-end;
        order: 2;
    }

    .admin-topbar-brand {
        order: 1;
    }

    .admin-hero {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-hero-actions {
        justify-content: flex-start;
    }

    .admin-charts-grid {
        grid-template-columns: 1fr;
    }

    .admin-panel-card,
    .admin-stat-card {
        border-radius: 1.1rem;
    }

    .admin-table {
        min-width: 620px;
    }
}

@media (max-width: 767.98px) {
    .admin-content {
        padding: 1rem;
    }

    .admin-brand-title {
        font-size: 1.3rem;
    }

    .admin-topbar {
        padding: 0.9rem 1rem;
    }

    .admin-topbar-brand {
        font-size: 1rem;
    }

    .admin-topbar-actions {
        gap: 0.55rem;
    }

    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-stat-card {
        min-height: 128px;
    }

    .admin-stat-value {
        font-size: clamp(1.6rem, 8vw, 2.3rem);
    }

    .admin-panel-card {
        padding: 1rem;
    }

    .admin-panel-card h2 {
        font-size: 1.2rem;
    }

    .admin-pill-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .admin-dropdown-menu {
        min-width: min(320px, calc(100vw - 2rem));
    }

    .admin-table-wrap {
        margin: 0 -0.15rem;
        padding-bottom: 0.25rem;
    }

    .admin-action-btn {
        white-space: nowrap;
    }
}

@media (max-width: 575.98px) {
    .admin-shell {
        font-size: 0.9rem;
    }

    .admin-sidebar {
        padding: 0.85rem 0.75rem;
    }

    .admin-nav {
        grid-auto-columns: minmax(132px, 1fr);
        gap: 0.4rem;
    }

    .admin-nav-item {
        padding: 0.75rem 0.85rem;
        font-size: 0.84rem;
        gap: 0.6rem;
    }

    .admin-content {
        padding: 0.85rem;
    }

    .admin-hero-compact h1 {
        font-size: 1.6rem;
    }

    .admin-hero-text,
    .admin-subtext,
    .admin-message-item p,
    .admin-mini-item p {
        font-size: 0.82rem;
    }

    .admin-topbar-search {
        padding: 0.5rem 0.75rem;
    }

    .admin-topbar-icon,
    .admin-avatar {
        width: 2.1rem;
        height: 2.1rem;
    }

    .admin-dropdown-menu {
        right: 0 !important;
        left: auto !important;
    }

    .admin-table {
        min-width: 560px;
        font-size: 0.78rem;
    }

    .admin-table thead th {
        font-size: 0.66rem;
    }
}
.admin-charts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.admin-mini-tabs {
    display: inline-flex;
    gap: 0.35rem;
    font-size: 0.76rem;
    color: #6b7280;
}

.admin-mini-tabs span {
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #eef2f8;
}

.admin-mini-tabs .active {
    background: #07163b;
    color: #fff;
}

.admin-dropdown-menu {
    min-width: 320px;
    border-radius: 1rem;
    box-shadow: 0 18px 36px rgba(15, 39, 66, 0.14);
    margin-top: 0.75rem;
    z-index: 1300;
}

.admin-notification-dropdown {
    position: relative;
}

.admin-dropdown-title {
    padding: 0.35rem 0.65rem 0.55rem;
    font-size: 0.76rem;
    color: #8a6420;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-dropdown-item {
    display: grid;
    gap: 0.15rem;
    padding: 0.65rem;
    margin-bottom: 0.35rem;
    border-radius: 0.85rem;
    background: #fafafa;
    text-decoration: none;
    color: #111827;
    font-size: 0.84rem;
}

.admin-dropdown-item strong {
    font-size: 0.92rem;
}

.admin-dropdown-item span {
    color: #667085;
}

.admin-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #b88a2d;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 700;
}

.admin-modal-content {
    border-radius: 1.2rem;
    border: 0;
    box-shadow: 0 22px 50px rgba(15, 39, 66, 0.18);
}

.admin-modal-content .modal-header,
.admin-modal-content .modal-body {
    padding: 1rem 1.2rem;
}

.admin-modal-content .modal-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.25rem;
}

.admin-modal-content .modal-body {
    font-size: 0.92rem;
    color: #475467;
}

.admin-action-btn {
    font-size: 0.72rem;
    padding: 0.28rem 0.55rem;
    border-radius: 0.65rem;
    line-height: 1.2;
}

@media (max-width: 1199.98px) {
    .admin-charts-grid {
        grid-template-columns: 1fr;
    }
}

/* Admin shell refresh */
.admin-shell {
    background: linear-gradient(180deg, #eef3fa 0%, #f7f9fc 100%);
    color: #111827;
    font-size: 0.94rem;
}

.admin-sidebar {
    background: linear-gradient(180deg, #fdfefe 0%, #f3f6fb 100%);
}

.admin-topbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
}

.admin-nav-item.active {
    background: linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
    color: #07163b;
    border-left: 3px solid #b88a2d;
}

.admin-nav-icon i,
.admin-topbar-search i,
.admin-topbar-icon i {
    font-size: 1rem;
    line-height: 1;
}

.admin-topbar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.admin-topbar-icon:hover,
.admin-topbar-icon:focus {
    color: #07163b;
    background: rgba(15, 39, 66, 0.06);
}

.admin-stat-icon {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.admin-tone-primary .admin-stat-icon {
    color: #2d4f9a;
}

.admin-tone-warning .admin-stat-icon {
    color: #8a6420;
}

.admin-tone-success .admin-stat-icon {
    color: #1f7a3a;
}

.admin-tone-secondary .admin-stat-icon {
    color: #4b5563;
}

.admin-panel-card,
.admin-stat-card,
.admin-message-item,
.admin-mini-item {
    backdrop-filter: blur(4px);
}

.admin-dashboard-compact .admin-hero {
    margin-bottom: 0.75rem;
}

.admin-hero-compact h1 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.admin-hero-compact .admin-hero-text {
    font-size: 0.88rem;
}

.admin-stats-grid-compact {
    gap: 0.75rem;
}

.admin-stat-card-compact {
    min-height: 128px;
    padding: 0.9rem;
}

.admin-stat-card-compact .admin-stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
}

.admin-stat-card-compact .admin-stat-label {
    font-size: 0.7rem;
    margin-top: 0.6rem;
}

.admin-stat-card-compact .admin-stat-value {
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
}

.admin-charts-grid-compact {
    gap: 0.9rem;
}

.admin-panel-card-compact {
    padding: 1rem;
}

.admin-panel-card-compact h2 {
    font-size: 1.35rem;
}

.admin-panels-grid-compact {
    gap: 0.9rem;
}

.admin-table-compact th,
.admin-table-compact td {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

.admin-message-list-compact,
.admin-mini-list-compact {
    gap: 0.55rem;
}

.admin-message-item,
.admin-mini-item {
    padding: 0.8rem;
}

.admin-image-preview {
    width: 100%;
    max-width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 0.85rem;
    border: 1px solid rgba(15, 39, 66, 0.08);
    box-shadow: 0 10px 20px rgba(15, 39, 66, 0.08);
}
.admin-table-thumb {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 0.8rem;
    border: 1px solid rgba(15, 39, 66, 0.08);
    box-shadow: 0 8px 16px rgba(15, 39, 66, 0.08);
}

.admin-show-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid rgba(15, 39, 66, 0.08);
    box-shadow: 0 14px 28px rgba(15, 39, 66, 0.08);
}

.admin-show-placeholder {
    min-height: 320px;
    border-radius: 1rem;
    border: 1px dashed #cfd8e3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    background: #f8fafc;
}
.site-toast {
    border-radius: 1rem;
    box-shadow: 0 18px 40px rgba(15, 39, 66, 0.18);
    border: 1px solid rgba(15, 39, 66, 0.08);
    overflow: hidden;
}

.site-toast .toast-header {
    background: #ffffff;
    color: #111827;
    border-bottom: 1px solid rgba(15, 39, 66, 0.06);
}

.admin-rich-text {
    min-height: 280px;
    line-height: 1.75;
}

.news-page {
    background:
        linear-gradient(180deg, #f4efe3 0%, #f8f5ee 16%, #fcfbf7 100%);
    color: #161616;
}

.news-hero-sheet {
    padding: 3.5rem 0 1.5rem;
}

.news-masthead {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: end;
    border-bottom: 3px solid #111827;
    padding-bottom: 1rem;
}

.news-kicker {
    margin-bottom: 0.35rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
    color: #8a6420;
}

.news-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 0.96;
    margin: 0;
    letter-spacing: -0.04em;
}

.news-meta-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem;
    max-width: 420px;
}

.news-meta-strip span {
    border: 1px solid rgba(17, 24, 39, 0.16);
    padding: 0.45rem 0.75rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: rgba(255, 255, 255, 0.72);
}

.news-magazine-section {
    padding: 1.25rem 0 4rem;
}

.news-sheet {
    background: rgba(255, 252, 246, 0.95);
    border: 1px solid rgba(17, 24, 39, 0.1);
    box-shadow: 0 18px 40px rgba(27, 25, 20, 0.08);
    padding: 1.25rem;
}

.news-lead-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(17, 24, 39, 0.12);
}

.news-lead-visual img,
.news-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-lead-visual {
    min-height: 520px;
    margin: 0;
    overflow: hidden;
    background: #e8e0cf;
}

.news-lead-copy h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 3vw, 3.3rem);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.news-section-label {
    margin-bottom: 0.45rem;
    color: #8a6420;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.news-byline {
    font-size: 0.8rem;
    color: #66615a;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.news-lead-excerpt,
.news-modal-excerpt {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2a2926;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.news-lead-body,
.news-modal-text {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #2c2b28;
}

.news-headlines {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.12);
}

.news-headline-row {
    display: grid;
    gap: 0.75rem;
    padding-right: 1rem;
    border-right: 1px solid rgba(17, 24, 39, 0.1);
}

.news-headline-row:last-child {
    border-right: 0;
    padding-right: 0;
}

.news-headline-row h3,
.news-column-entry h4 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.42rem;
    line-height: 1.14;
    margin-bottom: 0.45rem;
}

.news-headline-row p,
.news-column-entry p {
    font-size: 0.94rem;
    line-height: 1.75;
    color: #47423b;
    margin-bottom: 0;
}

.news-headline-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.78rem;
    color: #66615a;
}

.news-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
    padding-top: 1.25rem;
}

.news-column {
    display: grid;
    gap: 1rem;
}

.news-column-entry {
    padding-bottom: 1rem;
    border-bottom: 1px dotted rgba(17, 24, 39, 0.18);
}

.news-column-entry:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.news-read-link,
.news-inline-link {
    border: 0;
    background: transparent;
    padding: 0;
    color: #07163b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.77rem;
}

.news-modal-content {
    border-radius: 0;
    border: 0;
    background: #fcfbf7;
}

.news-modal-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    gap: 1.5rem;
}

.news-modal-image {
    min-height: 420px;
    overflow: hidden;
    background: #e8e0cf;
}

@media (max-width: 991.98px) {
    .news-masthead,
    .news-lead-grid,
    .news-modal-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .news-masthead {
        align-items: flex-start;
    }

    .news-meta-strip {
        justify-content: flex-start;
        max-width: none;
    }

    .news-headlines,
    .news-columns {
        grid-template-columns: 1fr;
    }

    .news-headline-row {
        border-right: 0;
        padding-right: 0;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(17, 24, 39, 0.1);
    }

    .news-headline-row:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .news-lead-visual {
        min-height: 360px;
    }
}

@media (max-width: 767.98px) {
    .news-hero-sheet {
        padding-top: 2.4rem;
    }

    .news-sheet {
        padding: 1rem;
    }

    .news-title {
        font-size: 2rem;
    }

    .news-lead-copy h2 {
        font-size: 1.8rem;
    }

    .news-lead-excerpt,
    .news-modal-excerpt {
        font-size: 0.98rem;
    }

    .news-lead-body,
    .news-modal-text,
    .news-headline-row p,
    .news-column-entry p {
        font-size: 0.9rem;
    }

    .news-modal-image {
        min-height: 260px;
    }
}

.site-toast .toast-body {
    background: #f8fafc;
    color: #111827;
}

.site-toast-dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: #b88a2d;
    display: inline-block;
}
.profile-page {
    background: #f5f0e8;
}

.profile-hero {
    background: linear-gradient(180deg, rgba(7, 22, 59, 0.94), rgba(7, 22, 59, 0.88));
    color: #fff;
}

.profile-hero-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.profile-status-badge {
    font-size: 0.75rem;
}

.profile-summary-card,
.profile-form-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 16px 30px rgba(15, 39, 66, 0.08);
    border: 1px solid rgba(15, 39, 66, 0.06);
}

.profile-avatar,
.admin-profile-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f2742, #8a6420);
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.profile-summary-card h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.profile-summary-card p {
    color: #6b7280;
}

.profile-summary-list {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.profile-summary-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    background: #f8fafc;
    border: 1px solid rgba(15, 39, 66, 0.06);
}

.profile-summary-list span {
    color: #6b7280;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.profile-summary-list strong {
    color: #111827;
    text-align: right;
}

.admin-profile-page {
    display: grid;
    gap: 1rem;
}

.admin-profile-grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 1rem;
}

.admin-profile-summary-card,
.admin-profile-form-card {
    padding: 1.25rem;
}

@media (max-width: 991.98px) {
    .profile-hero-card,
    .admin-profile-grid {
        grid-template-columns: 1fr;
    }

    .profile-hero-card {
        flex-direction: column;
        align-items: flex-start;
    }
}
