/* =============================================
   FAVOR OF GOD — Global Stylesheet
   Bold + Powerful. Warm + Peaceful.
   ============================================= */

/* ---- VARIABLES ---- */
:root {
    --purple:       #2C1654;
    --purple-dark:  #1A0F2E;
    --purple-mid:   #3D2272;
    --gold:         #D4A227;
    --gold-light:   #E8C04A;
    --cream:        #FBF8F2;
    --cream-dark:   #F0EBE0;
    --crimson:      #8B1A1A;
    --text-dark:    #1C1228;
    --text-mid:     #4A4060;
    --text-light:   #7A6D8A;
    --white:        #FFFFFF;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;

    --radius:       20px;
    --radius-sm:    12px;
    --shadow:       0 20px 60px rgba(28, 18, 40, 0.14);
    --shadow-sm:    0 8px 24px rgba(28, 18, 40, 0.10);

    --max-w:        1200px;
    --section-pad:  100px 0;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
    color: var(--purple-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p { color: var(--text-mid); }

section { padding: var(--section-pad); }

/* ---- CONTAINER ---- */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
}

/* ---- BUTTONS ---- */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--purple-dark);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .5px;
    padding: 16px 36px;
    border-radius: 50px;
    transition: all .28s ease;
    border: 2px solid var(--gold);
    text-transform: uppercase;
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 162, 39, .45);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .5px;
    padding: 14px 34px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,.6);
    transition: all .28s ease;
    text-transform: uppercase;
}
.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-outline-gold {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .5px;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--gold);
    transition: all .28s ease;
    text-transform: uppercase;
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--purple-dark);
    transform: translateY(-2px);
}

/* ---- SECTION LABEL / EYEBROW ---- */
.section-label, .eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

/* ---- SECTION HEADING ---- */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}
.section-heading span {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.section-heading h2 { color: var(--purple-dark); }
.section-heading.light h2 { color: var(--white); }
.section-heading.light span { color: var(--gold); }
.section-heading p {
    margin-top: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

/* =============================================
   HEADER
   ============================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--purple-dark);
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-text strong {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--white);
    letter-spacing: .3px;
}
.logo-text span {
    font-size: .72rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-menu a {
    font-size: .9rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    letter-spacing: .3px;
    transition: color .2s;
    position: relative;
    padding-bottom: 4px;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .25s ease;
    transform-origin: left;
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-menu a.active { color: var(--gold); }
.nav-menu a.active::after { transform: scaleX(1); }

.header-btn {
    background: var(--gold);
    color: var(--purple-dark);
    font-weight: 700;
    font-size: .85rem;
    padding: 11px 24px;
    border-radius: 50px;
    letter-spacing: .5px;
    text-transform: uppercase;
    flex-shrink: 0;
    transition: all .25s;
}
.header-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* ---- Hamburger ---- */
.hamburger { display: none; }

/* =============================================
   HERO
   ============================================= */

.hero {
    background: linear-gradient(135deg, #1A0F2E 0%, #2C1654 45%, #3D1A6E 70%, #1A0F2E 100%);
    position: relative;
    overflow: hidden;
    padding: 110px 0 100px;
    text-align: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 20% 50%, rgba(212,162,39,.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 80% 30%, rgba(139,26,26,.10) 0%, transparent 60%);
    pointer-events: none;
}
/* Decorative cross / glow */
.hero::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212,162,39,.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.hero-eyebrow {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    display: block;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    margin-bottom: 24px;
    line-height: 1.15;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-scripture {
    font-style: italic;
    color: rgba(255,255,255,.75);
    font-size: 1.1rem;
    margin-bottom: 42px;
    display: block;
}
.hero-scripture cite {
    font-style: normal;
    color: var(--gold);
    font-weight: 600;
    font-size: .9rem;
    display: block;
    margin-top: 8px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   FAITH BAR (trust strip under hero)
   ============================================= */

.faith-bar {
    background: var(--gold);
    padding: 18px 0;
}
.faith-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.faith-bar-inner span {
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--purple-dark);
    padding: 6px 28px;
    border-right: 1px solid rgba(44,22,84,.3);
}
.faith-bar-inner span:last-child { border-right: none; }

/* =============================================
   MISSION PILLARS
   ============================================= */

.pillars {
    background: var(--cream);
    padding-top: 80px;
    padding-bottom: 80px;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.pillar-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 44px 36px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 5px solid transparent;
    transition: all .35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-top-color: var(--gold);
}
.pillar-icon {
    font-size: 2.6rem;
    margin-bottom: 22px;
    line-height: 1;
}
.pillar-card h3 {
    color: var(--purple-dark);
    margin-bottom: 14px;
    font-size: 1.4rem;
}
.pillar-card p {
    font-size: .97rem;
    line-height: 1.7;
}
.pillar-card .pillar-link {
    margin-top: 26px;
    font-size: .85rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color .2s;
}
.pillar-card:hover .pillar-link { color: var(--purple-mid); }

/* =============================================
   SCRIPTURE BANNER
   ============================================= */

.scripture-banner {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, var(--purple-mid) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.scripture-banner::before {
    content: '✝';
    position: absolute;
    font-size: 28rem;
    color: rgba(255,255,255,.025);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    line-height: 1;
}
.scripture-banner blockquote {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}
.scripture-banner blockquote p {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 20px;
}
.scripture-banner blockquote cite {
    font-style: normal;
    color: var(--gold);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* =============================================
   FEATURED POSTS (Home)
   ============================================= */

.featured-posts {
    background: var(--cream-dark);
}
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.post-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .35s ease;
    display: flex;
    flex-direction: column;
}
.post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.post-card-thumb {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 100%);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}
.post-card-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(212,162,39,.15), transparent);
}
.post-card-body {
    padding: 28px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.post-date {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.post-card-body h3 {
    color: var(--purple-dark);
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.35;
}
.post-card-body p {
    font-size: .92rem;
    line-height: 1.65;
    flex: 1;
}
.post-card-body .read-more {
    margin-top: 22px;
    font-weight: 700;
    font-size: .82rem;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}
.post-card:hover .read-more { gap: 10px; }

/* =============================================
   MINISTRY CALLOUT (Home)
   ============================================= */

.ministry-callout {
    background: var(--white);
}
.ministry-callout-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.ministry-text .eyebrow { color: var(--gold); }
.ministry-text h2 { color: var(--purple-dark); margin-bottom: 20px; }
.ministry-text p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    line-height: 1.8;
}
.ministry-text .scripture-inline {
    background: var(--cream);
    border-left: 5px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 22px 28px;
    margin: 28px 0;
    font-style: italic;
    color: var(--text-mid);
    font-size: 1rem;
}
.ministry-text .scripture-inline cite {
    font-style: normal;
    font-weight: 700;
    color: var(--purple-dark);
    font-size: .85rem;
    display: block;
    margin-top: 8px;
}

.ministry-visual {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.ministry-visual::before {
    content: '🔓';
    font-size: 10rem;
    position: absolute;
    top: -20px; right: -20px;
    opacity: .08;
    line-height: 1;
}
.ministry-visual h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}
.ministry-visual p {
    color: rgba(255,255,255,.85);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}
.ministry-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
    z-index: 2;
}
.stat-item {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 22px 18px;
}
.stat-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-item span {
    font-size: .82rem;
    color: rgba(255,255,255,.75);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */

.page-hero {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, var(--purple-mid) 100%);
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 120%, rgba(212,162,39,.08) 0%, transparent 60%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}
.page-hero-content span {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.page-hero-content h1 {
    color: var(--white);
    margin-bottom: 18px;
}
.page-hero-content p {
    color: rgba(255,255,255,.8);
    font-size: 1.1rem;
}

/* =============================================
   BLOG PAGE
   ============================================= */

.blog-section { background: var(--cream); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.blog-card-thumb {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}
.blog-card-body {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-body .post-date { color: var(--gold); }
.blog-card-body h3 {
    font-size: 1.35rem;
    color: var(--purple-dark);
    margin: 10px 0 14px;
}
.blog-card-body p { flex: 1; font-size: .95rem; }
.blog-card-body .read-more {
    margin-top: 24px;
    font-weight: 700;
    font-size: .82rem;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}
.blog-card:hover .read-more { gap: 10px; }

/* =============================================
   INDIVIDUAL BLOG POST
   ============================================= */

.post-page { background: var(--white); }
.post-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 70px 28px 90px;
}
.post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.post-meta .date {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}
.post-meta .back-link {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-light);
    transition: color .2s;
}
.post-meta .back-link:hover { color: var(--purple); }
.post-page h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--purple-dark);
    margin-bottom: 40px;
    line-height: 1.25;
}
.post-divider {
    width: 60px; height: 4px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 36px;
}

/* Post content styling */
.post-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-dark);
}
.post-body p {
    color: var(--text-dark);
    margin-bottom: 24px;
}
.post-body h2, .post-body h3 {
    color: var(--purple-dark);
    margin: 40px 0 18px;
    font-family: var(--font-heading);
}
.post-body h2 { font-size: 1.6rem; }
.post-body h3 { font-size: 1.3rem; }
.post-body ul, .post-body ol {
    padding-left: 28px;
    margin-bottom: 24px;
    list-style: disc;
    color: var(--text-dark);
}
.post-body li { margin-bottom: 8px; }
.post-body strong { color: var(--purple-dark); font-weight: 700; }
.post-body em { font-style: italic; color: var(--purple-mid); }
.post-body blockquote {
    border-left: 5px solid var(--gold);
    background: var(--cream);
    padding: 22px 28px;
    margin: 32px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-mid);
}
.post-body blockquote p { margin-bottom: 0; }
.post-body figure { margin: 30px 0; }
.post-body img {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.post-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--cream-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: gap;
    gap: 20px;
}

/* =============================================
   PRISON MINISTRY PAGE
   ============================================= */

.ministry-overview { background: var(--white); }
.ministry-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.ministry-overview-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.ministry-overview-content .scripture-block {
    background: var(--purple-dark);
    border-left: 6px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 28px 32px;
    margin: 30px 0;
}
.ministry-overview-content .scripture-block p {
    color: rgba(255,255,255,.92) !important;
    font-style: italic;
    margin-bottom: 10px;
}
.ministry-overview-content .scripture-block cite {
    color: var(--gold);
    font-weight: 700;
    font-size: .9rem;
    font-style: normal;
    letter-spacing: 1px;
}

.ministry-side-panel {
    background: linear-gradient(160deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
    border-radius: 28px;
    padding: 44px 38px;
    color: white;
    position: sticky;
    top: 100px;
}
.ministry-side-panel h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.4rem;
}
.ministry-side-panel p {
    color: rgba(255,255,255,.8);
    margin-bottom: 28px;
    font-size: .97rem;
}

.ways-to-help {
    background: var(--cream-dark);
}
.ways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.way-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 38px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all .3s;
    border-bottom: 4px solid transparent;
}
.way-card:hover {
    transform: translateY(-6px);
    border-bottom-color: var(--gold);
    box-shadow: var(--shadow);
}
.way-card .way-icon { font-size: 2.4rem; margin-bottom: 18px; }
.way-card h3 { color: var(--purple-dark); margin-bottom: 12px; font-size: 1.25rem; }
.way-card p { font-size: .93rem; }

/* =============================================
   ABOUT PAGE
   ============================================= */

.about-intro { background: var(--white); }
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}
.about-photo {
    position: relative;
}
.about-photo-img {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow);
    display: block;
}
.about-photo-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 100%);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    gap: 12px;
    box-shadow: var(--shadow);
}
.about-photo-placeholder span { font-size: 3rem; }
.about-photo-placeholder p { font-size: .9rem; text-align: center; color: rgba(255,255,255,.6); }
.about-photo-badge {
    position: absolute;
    bottom: -16px; right: -16px;
    background: var(--gold);
    color: var(--purple-dark);
    border-radius: 18px;
    padding: 14px 22px;
    font-weight: 800;
    font-size: .85rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(212,162,39,.45);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.about-story-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 22px;
}

/* =============================================
   CONTACT / PRAYER PAGE
   ============================================= */

.contact-page { background: var(--cream); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.contact-info-panel { }
.contact-info-panel h2 {
    color: var(--purple-dark);
    margin-bottom: 18px;
}
.contact-info-panel > p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}
.contact-item-icon {
    width: 44px; height: 44px;
    background: var(--purple-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-item-text h4 {
    color: var(--purple-dark);
    font-size: 1rem;
    margin-bottom: 4px;
}
.contact-item-text p, .contact-item-text a {
    font-size: .92rem;
    color: var(--text-mid);
    transition: color .2s;
}
.contact-item-text a:hover { color: var(--gold); }

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 44px;
    box-shadow: var(--shadow);
}
.contact-form-wrapper h3 {
    color: var(--purple-dark);
    margin-bottom: 28px;
    font-size: 1.6rem;
}
.form-group {
    margin-bottom: 22px;
}
.form-group label {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    color: var(--purple-dark);
    margin-bottom: 8px;
    letter-spacing: .3px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #E0D8EE;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--purple-mid);
    box-shadow: 0 0 0 3px rgba(61, 34, 114, .12);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* =============================================
   PRAYER REQUEST SECTION
   ============================================= */

.prayer-callout {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
    text-align: center;
    padding: 80px 0;
}
.prayer-callout h2 { color: var(--white); margin-bottom: 18px; }
.prayer-callout p {
    color: rgba(255,255,255,.8);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

/* =============================================
   FINAL CTA
   ============================================= */

.final-cta {
    background: var(--gold);
    padding: 80px 0;
    text-align: center;
}
.final-cta h2 {
    color: var(--purple-dark);
    margin-bottom: 16px;
}
.final-cta p {
    color: rgba(44, 22, 84, .75);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.final-cta .btn-primary {
    background: var(--purple-dark);
    border-color: var(--purple-dark);
    color: var(--white);
}
.final-cta .btn-primary:hover {
    background: var(--purple-mid);
    border-color: var(--purple-mid);
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
    background: var(--purple-dark);
    padding: 70px 0 0;
    color: rgba(255,255,255,.75);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p {
    font-size: .9rem;
    line-height: 1.7;
    color: rgba(255,255,255,.6);
}
.footer-brand .social-links {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}
.social-link {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    transition: all .2s;
}
.social-link:hover {
    background: var(--gold);
    color: var(--purple-dark);
}

.footer-col h4 {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer-col a, .footer-col p {
    display: block;
    font-size: .88rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 10px;
    transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    padding: 22px 0;
    text-align: center;
    font-size: .82rem;
    color: rgba(255,255,255,.4);
}
.footer-bottom a {
    color: rgba(255,255,255,.55);
    transition: color .2s;
}
.footer-bottom a:hover { color: var(--gold); }

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */

@media (max-width: 992px) {

    :root { --section-pad: 70px 0; }

    /* --- Nav --- */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--purple-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 36px;
        z-index: 9998;
    }
    .nav-menu.open { display: flex; }
    .nav-menu a {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--white);
    }
    .nav-menu a::after { display: none; }
    .header-btn { display: none; }

    /* --- Hamburger --- */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px; height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 9999;
        flex-shrink: 0;
    }
    .hamburger span {
        display: block;
        height: 3px;
        background: white;
        border-radius: 3px;
        transition: all .3s ease;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

    /* --- Grids --- */
    .pillars-grid,
    .posts-grid,
    .blog-grid,
    .ways-grid { grid-template-columns: 1fr; }

    .ministry-callout-inner,
    .ministry-overview-grid,
    .about-intro-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

    .faith-bar-inner span {
        border-right: none;
        border-bottom: 1px solid rgba(44,22,84,.2);
        padding: 10px 20px;
        width: 50%;
        text-align: center;
    }

    .about-photo-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }

    .ministry-side-panel { position: static; }

    .contact-form-wrapper { padding: 36px 24px; }

}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero { padding: 80px 0 70px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .post-footer { flex-direction: column; }
    .page-hero { padding: 60px 0 50px; }
    .page-hero-content h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .contact-form-wrapper { padding: 28px 18px; }
    /* Testimonials form box on small screens */
    .testimonials-form-box { padding: 28px 18px !important; }
    .ways-grid { gap: 20px; }
    .store-grid { grid-template-columns: 1fr; }
}

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mt-36 { margin-top: 36px; }
.mt-50 { margin-top: 50px; }
.mb-50 { margin-bottom: 50px; }
