/*
Theme Name: Center of Hope
Theme URI: https://www.centerofhopechester.org/
Author: Christ Central Ministries
Description: Center of Hope — lavender & lilac theme with warm gold accents.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: center-of-hope
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Option B — Lavender & Lilac */
  --hope-primary:    #3C3489;   /* deep purple — nav, dark sections */
  --hope-primary-lt: #5850C0;   /* medium purple — hover states */
  --hope-accent:     #7F77DD;   /* lavender — links, icons, highlights */
  --hope-accent-lt:  #CECBF6;   /* light lavender — backgrounds, tags */
  --hope-gold:       #D4A847;   /* warm gold — CTA buttons, rules */
  --hope-gold-lt:    #FDF3D8;   /* pale gold — tag backgrounds */
  --hope-cream:      #F5F4FE;   /* near-white lavender — page background */
  --hope-stone:      #ECEAF8;   /* soft lavender-grey — alt sections */
  --hope-dark:       #1A1640;   /* very dark purple — headings, body */
  --hope-muted:      #5A5690;   /* muted purple — secondary text */
  --hope-border:     #CECBF6;   /* lavender border */

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --shadow-sm: 0 1px 4px rgba(60,52,137,0.07);
  --shadow-md: 0 4px 20px rgba(60,52,137,0.12);
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', system-ui, sans-serif;
  --max-w: 1140px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--hope-cream); color: var(--hope-dark); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: var(--hope-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* TOP BAR */
.top-bar { background: var(--hope-dark); color: #fff; font-size: 13px; padding: 8px 0; }
.top-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.top-bar a { color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.top-bar a:hover { color: var(--hope-accent-lt); text-decoration: none; }
.top-bar__contact { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar__social a { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); transition: border-color 0.2s, color 0.2s; }
.top-bar__social a:hover { border-color: var(--hope-gold); color: var(--hope-gold); }

/* HEADER */
.site-header { background: #fff; border-bottom: 1px solid var(--hope-border); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 14px; padding-bottom: 14px; }
.site-logo { display: flex; flex-direction: column; gap: 1px; }
.site-logo__name { font-family: var(--ff-display); font-size: 22px; font-weight: 700; color: var(--hope-dark); line-height: 1.1; }
.site-logo__tagline { font-size: 11px; color: var(--hope-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 6px; list-style: none; }
.primary-nav a { display: flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: var(--r-sm); font-size: 14px; font-weight: 500; color: var(--hope-dark); transition: background 0.15s, color 0.15s; }
.primary-nav a:hover { background: var(--hope-stone); color: var(--hope-primary); text-decoration: none; }
.primary-nav a svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.nav-cta { background: var(--hope-primary) !important; color: #fff !important; border-radius: var(--r-sm); padding: 10px 18px !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--hope-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: transparent; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--hope-dark); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; border-radius: var(--r-sm); font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.18s; text-decoration: none; border: 2px solid transparent; line-height: 1; }
.btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
.btn-primary { background: var(--hope-gold); color: var(--hope-dark); border-color: var(--hope-gold); }
.btn-primary:hover { background: #B8902E; border-color: #B8902E; color: var(--hope-dark); text-decoration: none; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); text-decoration: none; }
.btn-outline-dark { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.35); }
.btn-outline-dark:hover { border-color: #fff; background: rgba(255,255,255,0.08); text-decoration: none; }
.btn-purple { background: var(--hope-primary); color: #fff; border-color: var(--hope-primary); }
.btn-purple:hover { background: var(--hope-dark); border-color: var(--hope-dark); text-decoration: none; }

/* HERO */
.hero { background: linear-gradient(160deg, var(--hope-dark) 0%, #2B266E 100%); color: #fff; padding: 80px 0 72px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url('http://www.centerofhopechester.org/wp-content/uploads/2026/06/front-of-building-1.jpg') center/cover no-repeat; opacity: 0.12; pointer-events: none; }
.hero .container { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--hope-gold); font-weight: 500; margin-bottom: 16px; }
.hero__eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--hope-gold); }
.hero h1 { font-family: var(--ff-display); font-size: clamp(36px, 5vw, 56px); font-weight: 700; line-height: 1.12; margin-bottom: 20px; letter-spacing: -0.01em; }
.hero h1 em { font-style: normal; color: var(--hope-accent-lt); }
.hero__desc { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 480px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__image { border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.35); aspect-ratio: 4/3; position: relative; }
.hero__image img { width: 100%; height: 100%; object-fit: cover; }

/* STATS STRIP */
.stats-strip { background: var(--hope-primary); color: #fff; padding: 32px 0; }
.stats-strip .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.15); border-radius: var(--r-md); overflow: hidden; }
.stat-item { background: var(--hope-primary); padding: 20px 28px; text-align: center; }
.stat-item__num { font-family: var(--ff-display); font-size: 36px; font-weight: 700; line-height: 1; color: var(--hope-gold); margin-bottom: 4px; }
.stat-item__label { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 400; }

/* SECTIONS */
.section { padding: 80px 0; }
.section--alt { background: var(--hope-stone); }
.section--dark { background: var(--hope-dark); color: #fff; }
.section__label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--hope-gold); margin-bottom: 10px; }
.section__title { font-family: var(--ff-display); font-size: clamp(28px, 4vw, 42px); font-weight: 700; line-height: 1.18; margin-bottom: 16px; letter-spacing: -0.01em; }
.section--dark .section__title { color: #fff; }
.section__subtitle { font-size: 17px; color: var(--hope-muted); max-width: 560px; line-height: 1.65; }
.section--dark .section__subtitle { color: rgba(255,255,255,0.65); }
.section__header { margin-bottom: 48px; }
.section__header--center { text-align: center; }
.section__header--center .section__subtitle { margin: 0 auto; }

/* PILLARS */
.pillars-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.pillar-card { background: #fff; border: 1px solid var(--hope-border); border-radius: var(--r-lg); padding: 28px 16px; text-align: center; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.pillar-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--hope-accent); }
.pillar-card__icon { width: 52px; height: 52px; border-radius: 50%; background: var(--hope-accent-lt); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.pillar-card__icon svg { width: 24px; height: 24px; stroke: var(--hope-primary); fill: none; stroke-width: 1.8; }
.pillar-card__title { font-size: 14px; font-weight: 600; color: var(--hope-dark); line-height: 1.35; }

/* NEWS BANNER */
.news-banner { background: linear-gradient(135deg, var(--hope-stone) 0%, #fff 100%); border: 1px solid var(--hope-border); border-left: 4px solid var(--hope-primary); border-radius: var(--r-lg); padding: 32px 36px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.news-banner__icon { width: 56px; height: 56px; border-radius: 50%; background: var(--hope-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.news-banner__icon svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 1.8; }
.news-banner__body { flex: 1; min-width: 200px; }
.news-banner__label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--hope-primary); font-weight: 600; margin-bottom: 6px; }
.news-banner__title { font-family: var(--ff-display); font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--hope-dark); }
.news-banner__desc { font-size: 15px; color: var(--hope-muted); }

/* SCRIPTURE CARD */
.scripture-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.scripture-card { background: var(--hope-dark); color: #fff; border-radius: var(--r-lg); padding: 40px; position: relative; overflow: hidden; }
.scripture-card::before { content: '\201C'; position: absolute; top: -10px; right: 24px; font-family: var(--ff-display); font-size: 160px; color: rgba(212,168,71,0.15); line-height: 1; pointer-events: none; }
.scripture-card__month { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hope-gold); font-weight: 600; margin-bottom: 16px; }
.scripture-card__quote { font-family: var(--ff-display); font-size: 20px; font-style: italic; line-height: 1.55; color: rgba(255,255,255,0.92); margin-bottom: 16px; }
.scripture-card__ref { font-size: 13px; color: var(--hope-gold); font-weight: 500; }
.scripture-card__cta { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); }
.scripture-card__cta p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.scripture-focus { padding-top: 8px; }
.scripture-focus__heading { font-family: var(--ff-display); font-size: 28px; font-weight: 700; margin-bottom: 12px; color: var(--hope-dark); line-height: 1.25; }
.scripture-focus__desc { font-size: 16px; color: var(--hope-muted); margin-bottom: 28px; line-height: 1.7; }
.qna-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.qna-item { background: #fff; border: 1px solid var(--hope-border); border-radius: var(--r-md); padding: 14px 18px; display: flex; gap: 14px; align-items: flex-start; }
.qna-item__icon { width: 36px; height: 36px; border-radius: 50%; background: var(--hope-gold-lt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.qna-item__icon svg { width: 16px; height: 16px; stroke: var(--hope-gold); fill: none; stroke-width: 2; }
.qna-item__q { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.qna-item__ref { font-size: 12px; color: var(--hope-muted); }

/* STEPS - GET HELP */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-lg); padding: 32px 28px; position: relative; }
.step-card__num { font-family: var(--ff-display); font-size: 56px; font-weight: 700; color: rgba(212,168,71,0.25); line-height: 1; margin-bottom: 12px; }
.step-card__icon { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--hope-gold); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step-card__icon svg { width: 22px; height: 22px; stroke: var(--hope-dark); fill: none; stroke-width: 2; }
.step-card__title { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.step-card__desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; }
.step-card__desc a { color: var(--hope-gold); }

/* THRIFT STORE */
.thrift-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.thrift-info__hours { background: #fff; border: 1px solid var(--hope-border); border-radius: var(--r-lg); overflow: hidden; margin-top: 24px; }
.thrift-info__hours-header { background: var(--hope-stone); padding: 14px 20px; font-size: 13px; font-weight: 600; color: var(--hope-muted); letter-spacing: 0.06em; text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.thrift-info__hours-header svg { width: 15px; height: 15px; stroke: var(--hope-muted); fill: none; stroke-width: 2; }
.hours-row { display: flex; justify-content: space-between; padding: 12px 20px; font-size: 14px; border-bottom: 1px solid var(--hope-border); }
.hours-row:last-child { border-bottom: none; }
.hours-row__day { color: var(--hope-muted); }
.hours-row__time { font-weight: 500; }
.thrift-card { background: var(--hope-stone); border: 1px solid var(--hope-border); border-radius: var(--r-lg); padding: 36px; }
.thrift-card__title { font-family: var(--ff-display); font-size: 26px; font-weight: 700; color: var(--hope-dark); margin-bottom: 12px; }
.thrift-card__desc { font-size: 15px; color: var(--hope-muted); line-height: 1.7; margin-bottom: 24px; }
.thrift-card__links { display: flex; flex-direction: column; gap: 10px; }
.thrift-link { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--hope-primary); }
.thrift-link svg { width: 16px; height: 16px; stroke: var(--hope-primary); fill: none; stroke-width: 2; flex-shrink: 0; }

/* DONATE BAND */
.donate-section { background: var(--hope-gold); padding: 64px 0; text-align: center; }
.donate-section .section__title { color: var(--hope-dark); }
.donate-section .section__subtitle { color: rgba(26,22,64,0.7); margin: 0 auto 36px; }

/* CONTACT */
.contact-section { background: #fff; padding: 80px 0 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.contact-info__title { font-family: var(--ff-display); font-size: 32px; font-weight: 700; margin-bottom: 8px; }
.contact-info__subtitle { font-size: 15px; color: var(--hope-muted); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item__icon { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--hope-accent-lt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item__icon svg { width: 18px; height: 18px; stroke: var(--hope-primary); fill: none; stroke-width: 1.8; }
.contact-item__label { font-size: 12px; color: var(--hope-muted); margin-bottom: 2px; }
.contact-item__value { font-size: 15px; font-weight: 500; color: var(--hope-dark); }
.contact-item__value a { color: var(--hope-dark); }
.contact-item__value a:hover { color: var(--hope-primary); text-decoration: none; }
.contact-map { border-radius: var(--r-lg); overflow: hidden; height: 320px; background: var(--hope-stone); border: 1px solid var(--hope-border); }
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* FOOTER */
.site-footer { background: var(--hope-dark); color: rgba(255,255,255,0.5); padding: 24px 0; font-size: 13px; }
.site-footer .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.site-footer a { color: rgba(255,255,255,0.5); }
.site-footer a:hover { color: #fff; text-decoration: none; }

/* PAGE HERO */
.page-hero { background: linear-gradient(160deg, var(--hope-dark) 0%, #2B266E 100%); color: #fff; padding: 72px 0 64px; position: relative; overflow: hidden; }
.page-hero .container { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.page-hero__content h1 { font-family: var(--ff-display); font-size: clamp(32px, 4.5vw, 52px); font-weight: 700; line-height: 1.12; margin-bottom: 18px; letter-spacing: -0.01em; }
.page-hero__content h1 em { font-style: normal; color: var(--hope-accent-lt); }
.page-hero__desc { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 460px; }
.page-hero__image-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.35); aspect-ratio: 4/3; position: relative; }
.page-hero__image-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* MISSION / ABOUT */
.mission-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.mission-body { font-size: 16px; color: var(--hope-muted); line-height: 1.75; margin-bottom: 16px; }
.mission-pillars { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--hope-border); }
.mission-pillar { display: flex; align-items: center; gap: 14px; }
.mission-pillar__icon { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--hope-accent-lt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mission-pillar__icon svg { width: 18px; height: 18px; stroke: var(--hope-primary); }
.mission-pillar__label { font-size: 14px; font-weight: 600; color: var(--hope-dark); margin-bottom: 1px; }
.mission-pillar__desc { font-size: 13px; color: var(--hope-muted); }
.mission-card { background: #fff; border: 1px solid var(--hope-border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.mission-card__header { background: var(--hope-dark); color: #fff; padding: 16px 24px; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.mission-card__header svg { width: 20px; height: 20px; stroke: var(--hope-gold); fill: none; stroke-width: 1.8; }
.journey-steps { list-style: none; padding: 16px 24px; display: flex; flex-direction: column; }
.journey-step { display: flex; gap: 16px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--hope-border); }
.journey-step:last-child { border-bottom: none; }
.journey-step__num { width: 28px; height: 28px; border-radius: 50%; background: var(--hope-primary); color: #fff; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.journey-step__title { font-size: 14px; font-weight: 600; color: var(--hope-dark); margin-bottom: 3px; }
.journey-step__desc { font-size: 13px; color: var(--hope-muted); line-height: 1.55; }

/* WHO WE SERVE */
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 28px; }
.who-card { background: #fff; border: 1px solid var(--hope-border); border-radius: var(--r-lg); padding: 28px 24px; transition: transform 0.2s, box-shadow 0.2s; }
.who-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.who-card__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--hope-accent-lt); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.who-card__icon svg { width: 22px; height: 22px; stroke: var(--hope-primary); }
.who-card__title { font-size: 16px; font-weight: 600; color: var(--hope-dark); margin-bottom: 8px; }
.who-card__desc { font-size: 14px; color: var(--hope-muted); line-height: 1.65; }
.eligibility-note { background: var(--hope-gold-lt); border: 1px solid rgba(212,168,71,0.25); border-left: 4px solid var(--hope-gold); border-radius: var(--r-md); padding: 16px 20px; display: flex; gap: 12px; align-items: flex-start; }
.eligibility-note svg { stroke: var(--hope-gold); fill: none; flex-shrink: 0; margin-top: 2px; }
.eligibility-note p { font-size: 14px; color: var(--hope-dark); line-height: 1.6; }
.eligibility-note a { color: var(--hope-primary); font-weight: 500; }

/* VOLUNTEER */
.needs-strip { background: var(--hope-gold-lt); border-top: 1px solid rgba(212,168,71,0.2); border-bottom: 1px solid rgba(212,168,71,0.2); padding: 14px 0; }
.needs-strip .container { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.needs-strip__label { font-size: 12px; font-weight: 600; color: var(--hope-dark); display: flex; align-items: center; gap: 5px; white-space: nowrap; flex-shrink: 0; }
.needs-strip__label svg { stroke: var(--hope-gold); }
.needs-strip__items { display: flex; gap: 8px; flex-wrap: wrap; }
.needs-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 500; color: #6B4A0A; background: rgba(212,168,71,0.15); border: 1px solid rgba(212,168,71,0.3); border-radius: 20px; padding: 4px 12px; }
.donate-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.donate-ideas { background: #fff; border: 1px solid var(--hope-border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.donate-ideas__header { background: var(--hope-primary); color: #fff; padding: 14px 20px; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.donate-ideas__header svg { stroke: rgba(255,255,255,0.8); fill: none; width: 18px; height: 18px; }
.donate-ideas__list { list-style: none; padding: 8px 0; }
.donate-idea { display: flex; gap: 14px; padding: 14px 20px; border-bottom: 1px solid var(--hope-border); align-items: flex-start; }
.donate-idea:last-child { border-bottom: none; }
.donate-idea__icon { width: 36px; height: 36px; border-radius: var(--r-sm); background: var(--hope-accent-lt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.donate-idea__icon svg { width: 16px; height: 16px; stroke: var(--hope-primary); fill: none; stroke-width: 1.8; }
.donate-idea__title { font-size: 14px; font-weight: 600; color: var(--hope-dark); margin-bottom: 3px; }
.donate-idea__desc { font-size: 13px; color: var(--hope-muted); line-height: 1.55; }
.vol-roles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vol-role-card { background: #fff; border: 1px solid var(--hope-border); border-radius: var(--r-lg); padding: 26px 22px; display: flex; flex-direction: column; gap: 10px; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.vol-role-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--hope-primary); }
.vol-role-card--idea { border-style: dashed; background: var(--hope-stone); }
.vol-role-card__icon { width: 46px; height: 46px; border-radius: 50%; background: var(--hope-accent-lt); display: flex; align-items: center; justify-content: center; }
.vol-role-card__icon svg { width: 20px; height: 20px; stroke: var(--hope-primary); }
.vol-role-card__title { font-size: 16px; font-weight: 600; color: var(--hope-dark); line-height: 1.3; }
.vol-role-card__desc { font-size: 14px; color: var(--hope-muted); line-height: 1.65; flex: 1; }
.vol-role-card__footer { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; padding-top: 12px; border-top: 1px solid var(--hope-border); }
.vol-tag { display: inline-flex; align-items: center; font-size: 11px; font-weight: 500; padding: 3px 9px; border-radius: 20px; background: var(--hope-stone); color: var(--hope-muted); border: 1px solid var(--hope-border); }
.vol-tag--purple { background: var(--hope-accent-lt); color: var(--hope-primary); border-color: rgba(127,119,221,0.25); }
.vol-tag--gold { background: var(--hope-gold-lt); color: #6B4A0A; border-color: rgba(212,168,71,0.3); }
.orientation-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.orientation-link { display: block; text-decoration: none; }
.orientation-card__inner { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--r-lg); padding: 32px; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.orientation-link:hover .orientation-card__inner { border-color: var(--hope-gold); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.orientation-card__icon { width: 48px; height: 48px; border-radius: var(--r-md); background: rgba(212,168,71,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.orientation-card__icon svg { width: 22px; height: 22px; stroke: var(--hope-gold); }
.orientation-card__label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--hope-gold); font-weight: 600; margin-bottom: 8px; }
.orientation-card__title { font-family: var(--ff-display); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.25; }
.orientation-card__sub { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* LOOKING FOR HELP */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 36px; }
.process-card { background: #fff; border: 1px solid var(--hope-border); border-radius: var(--r-lg); padding: 24px 20px; position: relative; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.process-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--hope-primary); }
.process-card__num { position: absolute; top: 16px; right: 18px; font-family: var(--ff-display); font-size: 30px; font-weight: 700; color: var(--hope-stone); line-height: 1; }
.process-card__icon { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--hope-accent-lt); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.process-card__icon svg { width: 20px; height: 20px; stroke: var(--hope-primary); }
.process-card__title { font-size: 15px; font-weight: 600; color: var(--hope-dark); margin-bottom: 6px; line-height: 1.3; }
.process-card__desc { font-size: 13px; color: var(--hope-muted); line-height: 1.6; }
.process-card__desc a { color: var(--hope-primary); font-weight: 500; }
.manual-note { background: var(--hope-accent-lt); border: 1px solid rgba(127,119,221,0.2); border-left: 4px solid var(--hope-primary); border-radius: var(--r-md); padding: 16px 20px; display: flex; gap: 12px; align-items: flex-start; }
.manual-note svg { stroke: var(--hope-primary); fill: none; flex-shrink: 0; margin-top: 2px; }
.manual-note p { font-size: 14px; color: var(--hope-dark); line-height: 1.6; }
.manual-note a { color: var(--hope-primary); font-weight: 600; }
.resource-card { background: #fff; border: 1px solid var(--hope-border); border-radius: var(--r-lg); padding: 28px; display: flex; gap: 16px; align-items: flex-start; box-shadow: var(--shadow-sm); }
.resource-card__icon { width: 48px; height: 48px; border-radius: var(--r-md); background: var(--hope-gold-lt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.resource-card__icon svg { width: 22px; height: 22px; stroke: var(--hope-gold); }
.resource-card__label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--hope-gold); font-weight: 600; margin-bottom: 6px; }
.resource-card__title { font-family: var(--ff-display); font-size: 19px; font-weight: 700; color: var(--hope-dark); margin-bottom: 8px; }
.resource-card__desc { font-size: 14px; color: var(--hope-muted); line-height: 1.6; }
.wellness-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.wellness-quote { background: var(--hope-dark); color: #fff; border-radius: var(--r-lg); padding: 32px 36px; margin-bottom: 20px; position: relative; overflow: hidden; }
.wellness-quote::before { content: '\201C'; position: absolute; top: -10px; right: 20px; font-family: var(--ff-display); font-size: 140px; color: rgba(212,168,71,0.15); line-height: 1; pointer-events: none; }
.wellness-quote p { font-family: var(--ff-display); font-size: 20px; font-style: italic; line-height: 1.55; color: rgba(255,255,255,0.92); margin-bottom: 14px; position: relative; }
.wellness-quote cite { font-size: 13px; color: var(--hope-gold); font-style: normal; font-weight: 500; }
.bible-study-card { background: #fff; border: 1px solid var(--hope-border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.bible-study-card__header { background: var(--hope-primary); color: #fff; padding: 13px 20px; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.bible-study-card__body { padding: 20px; }
.bible-study-card__title { font-family: var(--ff-display); font-size: 18px; font-weight: 700; color: var(--hope-dark); margin-bottom: 8px; }
.bible-study-card__detail { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--hope-muted); margin-bottom: 12px; }
.bible-study-card__desc { font-size: 14px; color: var(--hope-muted); line-height: 1.65; }

/* APPLICATION LINK */
.application-band { background: var(--hope-accent-lt); border-top: 1px solid var(--hope-border); border-bottom: 1px solid var(--hope-border); padding: 36px 0; text-align: center; }
.application-band h3 { font-family: var(--ff-display); font-size: 24px; font-weight: 700; color: var(--hope-dark); margin-bottom: 8px; }
.application-band p { font-size: 15px; color: var(--hope-muted); margin-bottom: 20px; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: #fff; border: 1px solid var(--hope-border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card__image { aspect-ratio: 4/3; overflow: hidden; background: var(--hope-stone); }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__image--placeholder { display: flex; align-items: center; justify-content: center; color: var(--hope-primary); background: var(--hope-accent-lt); }
.blog-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card__category { display: inline-block; align-self: flex-start; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--hope-primary); background: var(--hope-accent-lt); border-radius: 20px; padding: 3px 10px; margin-bottom: 10px; }
.blog-card__title { font-family: var(--ff-display); font-size: 19px; font-weight: 700; line-height: 1.3; margin-bottom: 8px; }
.blog-card__title a { color: var(--hope-dark); }
.blog-card__title a:hover { color: var(--hope-primary); text-decoration: none; }
.blog-card__meta { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--hope-muted); margin-bottom: 12px; }
.blog-card__excerpt { font-size: 14px; color: var(--hope-muted); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.blog-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--hope-primary); align-self: flex-start; }
.blog-card__link svg { stroke: var(--hope-primary); transition: transform 0.15s; }
.blog-card__link:hover svg { transform: translateX(3px); }
.blog-card__link:hover { text-decoration: none; }
.blog-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 12px; border-radius: var(--r-sm); background: #fff; border: 1px solid var(--hope-border); color: var(--hope-dark); font-size: 14px; font-weight: 500; }
.blog-pagination .page-numbers.current { background: var(--hope-primary); border-color: var(--hope-primary); color: #fff; }
.blog-pagination .page-numbers:hover:not(.current) { border-color: var(--hope-primary); color: var(--hope-primary); text-decoration: none; }

/* SINGLE POST */
.post-breadcrumb { margin-bottom: 24px; }
.post-breadcrumb a { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--hope-muted); }
.post-breadcrumb a:hover { color: var(--hope-primary); text-decoration: none; }
.single-post__title { font-family: var(--ff-display); font-size: clamp(28px, 4vw, 40px); font-weight: 700; line-height: 1.2; color: var(--hope-dark); margin: 10px 0 14px; }
.single-post__meta { display: flex; gap: 18px; flex-wrap: wrap; }
.single-post__meta span { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--hope-muted); }
.single-post__image { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 32px; box-shadow: var(--shadow-sm); }
.single-post__content { font-size: 16px; line-height: 1.8; color: var(--hope-dark); }
.single-post__content p { margin-bottom: 20px; }
.single-post__content h2, .single-post__content h3 { font-family: var(--ff-display); font-weight: 700; color: var(--hope-dark); margin: 32px 0 14px; }
.single-post__content a { color: var(--hope-primary); font-weight: 500; }
.single-post__content table { width: 100%; border-collapse: collapse; margin: 0 0 28px; font-size: 13.5px; border: 1px solid var(--hope-border); border-radius: var(--r-md); overflow: hidden; }
.single-post__content th { background: var(--hope-primary); color: #fff; text-align: left; font-weight: 600; padding: 10px 14px; font-size: 12.5px; }
.single-post__content td { padding: 9px 14px; border-top: 1px solid var(--hope-border); color: var(--hope-dark); vertical-align: top; }
.single-post__content tr:nth-child(even) td { background: var(--hope-cream); }
.single-post__content blockquote { background: var(--hope-dark); color: #fff; border-radius: var(--r-lg); padding: 28px 32px; margin: 28px 0; font-family: var(--ff-display); font-style: italic; font-size: 18px; line-height: 1.6; }
.single-post__content ul, .single-post__content ol { margin: 0 0 20px 22px; }
.single-post__content li { margin-bottom: 8px; }
.single-post__footer { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--hope-border); }
.table-scroll { overflow-x: auto; margin-bottom: 28px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .vol-roles-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .primary-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 1px solid var(--hope-border); flex-direction: column; padding: 12px; gap: 4px; box-shadow: var(--shadow-md); }
  .primary-nav.open { display: flex; }
  .site-header { position: relative; }
  .hero .container, .page-hero .container { grid-template-columns: 1fr; gap: 36px; }
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .scripture-section .container, .mission-layout, .thrift-section .container, .contact-grid, .wellness-layout, .donate-layout, .orientation-layout { grid-template-columns: 1fr; }
  .steps-grid, .who-grid { grid-template-columns: 1fr; }
  .vol-roles-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; }
  .btn { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }
