/* =============================================================
   SANEWA.CSS — Senior Action Network of Eastern Washington
   Single stylesheet for all pages (index, board, members, resources)
   ============================================================= */

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

/* ── CSS VARIABLES ── */
:root {
  --navy:       #1a3a5c;
  --navy-dark:  #102544;
  --teal:       #2a8fa5;
  --teal-light: #3ab0ca;
  --gold:       #c8912a;
  --gold-light: #e8aa45;
  --cream:      #f9f5ef;
  --white:      #ffffff;
  --gray:       #4a5568;
  --gray-light: #f3f4f6;
  --text:       #1e293b;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,58,92,0.97); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4%; height: 72px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.18);
}

/* Logo: icon image + CSS text stack — works on all pages */
.nav-logo {
  display: flex; align-items: center; text-decoration: none;
  gap: 10px; padding: 4px 0;
}
.nav-logo-icon { height: 48px; width: auto; display: block; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-line1 {
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 0.82rem;
  color: #ffffff; letter-spacing: 0.12em; text-transform: uppercase;
}
.nav-logo-line2 {
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.1rem;
  color: #5ab0d8; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 1px;
}
.nav-logo-line3 {
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 0.58rem;
  color: rgba(255,255,255,0.7); letter-spacing: 0.22em; text-transform: uppercase; margin-top: 3px;
}

.nav-links { display: flex; gap: 22px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 0.85rem; font-weight: 400; letter-spacing: 0.04em;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links .nav-cta {
  background: var(--gold); color: var(--white) !important;
  padding: 8px 16px; border-radius: 4px; font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-links .nav-cta:hover { background: var(--gold-light) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ── SHARED BUTTONS ── */
.btn-primary {
  background: var(--gold); color: var(--white); padding: 13px 30px;
  border-radius: 5px; font-weight: 700; font-size: 0.92rem; text-decoration: none;
  letter-spacing: 0.04em; transition: all 0.25s; border: 2px solid var(--gold); display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,145,42,0.35); }
.btn-outline {
  background: transparent; color: var(--navy); padding: 13px 30px;
  border-radius: 5px; font-weight: 700; font-size: 0.92rem; text-decoration: none;
  letter-spacing: 0.04em; transition: all 0.25s; border: 2px solid var(--navy); display: inline-block;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ── SHARED TEXT STYLES ── */
.section-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 14px; }
.section-lead { font-size: 1.05rem; color: var(--gray); max-width: 640px; font-weight: 400; line-height: 1.75; }

/* ── INDEX: HERO ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1e5a7a 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 5% 80px; position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,145,42,0.12) 0%, transparent 70%); pointer-events: none;
}
#hero::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(42,143,165,0.1) 0%, transparent 70%); pointer-events: none;
}
.hero-badge {
  display: inline-block; background: rgba(200,145,42,0.2);
  border: 1px solid rgba(200,145,42,0.5); color: var(--gold-light);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 30px; margin-bottom: 28px;
}
.hero-title { font-size: clamp(2.4rem, 5.5vw, 4.2rem); color: var(--white); font-weight: 700; margin-bottom: 22px; max-width: 800px; margin-left: auto; margin-right: auto; }
.hero-title em { font-style: normal; color: var(--gold-light); }
.hero-sub { font-size: clamp(1rem, 2vw, 1.22rem); color: rgba(255,255,255,0.85); max-width: 580px; margin: 0 auto 40px; font-weight: 400; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
/* Hero override for white outline button */
#hero .btn-outline {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4);
}
#hero .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.hero-stats { display: flex; gap: 50px; justify-content: center; margin-top: 64px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; }

/* ── INDEX: PAGES BANNER ── */
.pages-banner { background: var(--teal); padding: 18px 5%; }
.pages-banner-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.pages-banner span { color: rgba(255,255,255,0.7); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-right: 8px; }
.page-pill { background: rgba(255,255,255,0.15); color: var(--white); text-decoration: none; padding: 7px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; transition: background 0.2s; border: 1px solid rgba(255,255,255,0.25); }
.page-pill:hover { background: rgba(255,255,255,0.28); }

/* ── INDEX: GENERAL SECTIONS ── */
section { padding: 90px 5%; }

/* ── INDEX: MISSION ── */
#mission { background: var(--cream); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; max-width: 1100px; margin: 0 auto; }
.mission-quote { font-family: 'Playfair Display', serif; font-size: 1.55rem; color: var(--navy); line-height: 1.55; border-left: 4px solid var(--gold); padding-left: 24px; margin-top: 30px; }
.mission-pillars { display: flex; flex-direction: column; gap: 22px; }
.pillar { background: var(--white); border-radius: 10px; padding: 24px 26px; border-left: 4px solid var(--teal); box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.pillar h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.pillar p { font-size: 0.95rem; color: var(--gray); line-height: 1.7; }

/* ── INDEX: MONTHLY MEETING ── */
#meeting { background: var(--white); }
.meeting-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.meeting-card { background: var(--navy); border-radius: 16px; padding: 40px; color: var(--white); box-shadow: 0 8px 40px rgba(26,58,92,0.25); }
.meeting-card h3 { color: var(--gold-light); margin-bottom: 24px; font-size: 1.4rem; }
.meeting-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.meeting-detail-icon { width: 38px; height: 38px; background: rgba(200,145,42,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.meeting-detail-text strong { display: block; color: rgba(255,255,255,0.55); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.meeting-detail-text span { color: rgba(255,255,255,0.9); font-size: 0.95rem; }
.meeting-agenda { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); }
.meeting-agenda h4 { color: rgba(255,255,255,0.7); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; font-family: 'Inter', sans-serif; }
.agenda-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 10px; color: rgba(255,255,255,0.8); font-size: 0.92rem; }
.agenda-item::before { content: '›'; color: var(--gold-light); font-weight: 700; flex-shrink: 0; }
.meeting-info p { font-size: 1.02rem; color: var(--gray); line-height: 1.75; margin-bottom: 18px; font-weight: 400; }
.meeting-info a.btn-primary { display: inline-block; margin-top: 10px; }

/* ── INDEX: EVENTS ── */
#events { background: var(--gray-light); }
.events-header { max-width: 1100px; margin: 0 auto 50px; }
.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; max-width: 1100px; margin: 0 auto; }
.event-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 3px 20px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.06); transition: transform 0.25s, box-shadow 0.25s; }
.event-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.event-season { background: var(--navy); color: var(--white); text-align: center; padding: 18px; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; }
.event-season.spring { background: #2a7a5c; }
.event-season.summer { background: #c8912a; }
.event-season.fall   { background: #7a3a2a; }
.event-season.winter { background: #2a4a8a; }
.event-body { padding: 24px; }
.event-body h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.event-body p { font-size: 0.93rem; color: var(--gray); line-height: 1.7; }

/* ── INDEX: GIVE BACK ── */
#giveback { background: var(--navy); }
.giveback-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
#giveback .section-label { color: var(--gold-light); }
#giveback .section-title { color: var(--white); }
.giveback-lead { color: rgba(255,255,255,0.85); font-size: 1.02rem; font-weight: 400; line-height: 1.75; margin-bottom: 30px; }
.charity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.charity-chip { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.85); border-radius: 6px; padding: 12px 14px; font-size: 0.88rem; display: flex; align-items: center; gap: 8px; }
.charity-chip::before { content: '✦'; color: var(--gold-light); font-size: 0.65rem; flex-shrink: 0; }

/* ── INDEX: MEMBERSHIP ── */
#membership { background: var(--cream); }
.membership-inner { max-width: 1100px; margin: 0 auto; }
.membership-header { margin-bottom: 50px; }
.membership-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.mem-card { background: var(--white); border-radius: 14px; padding: 36px 30px; text-align: center; box-shadow: 0 4px 24px rgba(0,0,0,0.07); border: 2px solid transparent; transition: border-color 0.25s, transform 0.25s; }
.mem-card:hover { border-color: var(--teal); transform: translateY(-4px); }
.mem-card.featured { border-color: var(--gold); position: relative; }
.mem-card.featured::before { content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--white); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 16px; border-radius: 20px; }
.mem-icon { width: 58px; height: 58px; background: linear-gradient(135deg, var(--teal), var(--navy)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; }
.mem-card h3 { font-size: 1.22rem; color: var(--navy); margin-bottom: 12px; }
.mem-card p { font-size: 0.95rem; color: var(--gray); line-height: 1.7; }
.membership-pages { display: flex; gap: 14px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }

/* ── INDEX: RESOURCES TEASER ── */
#resources { background: var(--white); }
.resources-inner { max-width: 1100px; margin: 0 auto; }
.resource-cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; margin-top: 50px; }
.resource-cat { background: var(--gray-light); border-radius: 10px; padding: 26px 24px; transition: background 0.2s; }
.resource-cat:hover { background: #e8edf5; }
.resource-cat h4 { font-size: 1rem; color: var(--navy); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.resource-cat ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.resource-cat ul li { font-size: 0.88rem; color: var(--gray); padding-left: 14px; position: relative; }
.resource-cat ul li::before { content: '›'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* ── INDEX: CONTACT ── */
#contact { background: var(--navy-dark); }
.contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
#contact .section-title { color: var(--white); }
#contact .section-label { color: var(--gold-light); }
.contact-details { display: flex; flex-direction: column; gap: 18px; margin-top: 30px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; color: rgba(255,255,255,0.8); }
.contact-item-icon { width: 38px; height: 38px; background: rgba(200,145,42,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; color: var(--white); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.contact-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
.contact-item a:hover { color: var(--gold-light); }
.contact-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 36px; }
.contact-form h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 0.82rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input, .form-group textarea, .form-group select { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 7px; padding: 11px 14px; color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.92rem; transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--teal-light); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: var(--navy-dark); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 13px; background: var(--gold); color: var(--white); font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; border: none; border-radius: 7px; cursor: pointer; transition: background 0.2s; margin-top: 8px; }
.form-submit:hover { background: var(--gold-light); }

/* ── FOOTER ── */
footer { background: #0c1e35; padding: 40px 5%; text-align: center; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon { height: 40px; width: auto; display: block; flex-shrink: 0; }
.footer-logo-text { display: flex; flex-direction: column; line-height: 1; text-align: left; }
.footer-logo-line1 { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 0.72rem; color: rgba(255,255,255,0.8); letter-spacing: 0.12em; text-transform: uppercase; }
.footer-logo-line2 { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 0.95rem; color: #5ab0d8; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 1px; }
.footer-logo-line3 { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 0.52rem; color: rgba(255,255,255,0.5); letter-spacing: 0.22em; text-transform: uppercase; margin-top: 3px; }
.footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin: 18px 0; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

/* ── SUB-PAGE: PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e5a7a 100%);
  padding: 130px 5% 70px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::after { content: ''; position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%); width: 700px; height: 300px; background: radial-gradient(circle, rgba(42,143,165,0.12) 0%, transparent 70%); pointer-events: none; }
.page-hero-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 10px; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 1.08rem; color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto; font-weight: 400; }

/* ── SUB-PAGE: BREADCRUMB ── */
.breadcrumb { background: var(--gray-light); padding: 12px 5%; font-size: 0.85rem; }
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--gray); margin: 0 8px; }

/* ── SUB-PAGE: CONTENT AREA ── */
.page-content { max-width: 1100px; margin: 0 auto; padding: 70px 5%; }

/* ── BOARD PAGE ── */
.board-intro { margin-bottom: 60px; }
.board-intro p { font-size: 1.05rem; color: var(--gray); font-weight: 400; line-height: 1.8; max-width: 700px; margin-top: 14px; }
.officers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; margin-bottom: 70px; }
.officer-card { background: var(--white); border-radius: 14px; padding: 36px 28px; text-align: center; box-shadow: 0 4px 24px rgba(0,0,0,0.08); border-top: 4px solid var(--teal); transition: transform 0.25s, box-shadow 0.25s; }
.officer-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.officer-card.president { border-top-color: var(--gold); }
.officer-avatar { width: 72px; height: 72px; background: linear-gradient(135deg, var(--navy), var(--teal)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--white); }
.officer-card.president .officer-avatar { background: linear-gradient(135deg, var(--gold), var(--navy)); }
.officer-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.officer-card.president .officer-title { color: var(--gold); }
.officer-name { font-size: 1.2rem; color: var(--navy); margin-bottom: 6px; }
.officer-company { font-size: 0.88rem; color: var(--gray); }
.officer-bio { font-size: 0.88rem; color: var(--gray); margin-top: 12px; line-height: 1.6; font-style: italic; }
.board-section-title { font-size: 1.5rem; color: var(--navy); margin-bottom: 28px; padding-bottom: 14px; border-bottom: 2px solid var(--gray-light); }
.board-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; margin-bottom: 60px; }
.board-member { display: flex; align-items: center; gap: 14px; background: var(--gray-light); border-radius: 10px; padding: 16px 18px; transition: background 0.2s; }
.board-member:hover { background: #e2eaf5; }
.board-member-avatar { width: 44px; height: 44px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
.board-member-name { font-size: 0.98rem; color: var(--navy); font-weight: 700; }
.board-member-role { font-size: 0.82rem; color: var(--teal); }
.board-member-co { font-size: 0.82rem; color: var(--gray); }
.board-cta { background: var(--cream); border-radius: 16px; padding: 50px; text-align: center; margin-top: 60px; }
.board-cta h3 { font-size: 1.7rem; color: var(--navy); margin-bottom: 14px; }
.board-cta p { color: var(--gray); max-width: 500px; margin: 0 auto 28px; font-weight: 400; }
.board-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── MEMBERSHIP PAGE ── */
.directory-controls { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 36px; }
.search-input { flex: 1; min-width: 240px; padding: 12px 18px 12px 44px; border: 2px solid #dde3ea; border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--text); outline: none; transition: border-color 0.2s; background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") no-repeat 14px center; }
.search-input:focus { border-color: var(--teal); }
.filter-select { padding: 12px 18px; border: 2px solid #dde3ea; border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.92rem; color: var(--text); outline: none; background: var(--white); cursor: pointer; }
.filter-select:focus { border-color: var(--teal); }
.member-count { color: var(--gray); font-size: 0.88rem; white-space: nowrap; }
.category-heading { font-size: 1.1rem; color: var(--white); font-family: 'Playfair Display', serif; padding: 10px 18px; background: var(--navy); border-radius: 8px; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.category-heading span { font-size: 0.75rem; background: rgba(255,255,255,0.2); padding: 3px 10px; border-radius: 12px; font-family: 'Inter', sans-serif; }
.members-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.member-card { background: var(--white); border-radius: 10px; border: 1px solid #e2e8f0; padding: 20px 22px; display: flex; align-items: flex-start; gap: 14px; transition: border-color 0.2s, box-shadow 0.2s; }
.member-card:hover { border-color: var(--teal); box-shadow: 0 4px 18px rgba(42,143,165,0.12); }
.member-initial { width: 46px; height: 46px; flex-shrink: 0; background: linear-gradient(135deg, var(--navy), var(--teal)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); }
.member-name { font-size: 1rem; color: var(--navy); font-weight: 700; margin-bottom: 2px; }
.member-biz { font-size: 0.88rem; color: var(--teal); margin-bottom: 4px; }
.member-category { font-size: 0.78rem; color: var(--gray); }
.join-cta { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); border-radius: 16px; padding: 50px; text-align: center; margin-top: 60px; color: var(--white); }
.join-cta h3 { font-size: 1.8rem; margin-bottom: 14px; }
.join-cta p { color: rgba(255,255,255,0.72); max-width: 480px; margin: 0 auto 28px; font-weight: 400; }
.notice { background: #fff8e8; border: 1px solid #f0d080; border-radius: 8px; padding: 14px 18px; margin-bottom: 32px; font-size: 0.9rem; color: #7a5800; display: flex; gap: 10px; align-items: flex-start; }

/* ── RESOURCE GUIDE PAGE ── */
.guide-intro { margin-bottom: 56px; }
.guide-intro p { font-size: 1.05rem; color: var(--gray); font-weight: 400; line-height: 1.8; max-width: 680px; margin-top: 14px; }
.guide-search { background: var(--cream); border-radius: 12px; padding: 28px 32px; margin-bottom: 50px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.guide-search input { flex: 1; min-width: 240px; padding: 13px 18px 13px 46px; border: 2px solid #dde3ea; border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--text); outline: none; transition: border-color 0.2s; background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") no-repeat 14px center; }
.guide-search input:focus { border-color: var(--teal); }
.resource-section { margin-bottom: 56px; }
.resource-category-header { display: flex; align-items: center; gap: 14px; background: var(--navy); color: var(--white); padding: 16px 24px; border-radius: 10px; margin-bottom: 20px; }
.resource-category-header .cat-icon { font-size: 1.5rem; }
.resource-category-header h2 { font-size: 1.2rem; }
.resource-category-header p { font-size: 0.82rem; color: rgba(255,255,255,0.65); font-family: 'Inter', sans-serif; font-weight: 400; margin-top: 2px; }
.resource-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.resource-card { background: var(--white); border: 1px solid #e2e8f0; border-radius: 10px; padding: 20px 22px; transition: border-color 0.2s, box-shadow 0.2s; }
.resource-card:hover { border-color: var(--teal); box-shadow: 0 4px 18px rgba(42,143,165,0.1); }
.resource-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.resource-card .rc-contact { font-size: 0.85rem; color: var(--gray); margin-bottom: 6px; }
.resource-card .rc-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }
.resource-card a { color: var(--teal); text-decoration: none; font-size: 0.85rem; }
.resource-placeholder { border: 2px dashed #cdd5e0; background: var(--gray-light); border-radius: 10px; padding: 20px 22px; color: var(--gray); font-size: 0.88rem; font-style: italic; }
.guide-disclaimer { background: #f0f7ff; border: 1px solid #bcd4ee; border-radius: 10px; padding: 20px 24px; color: #2a4a7a; font-size: 0.9rem; line-height: 1.6; margin-bottom: 50px; display: flex; gap: 12px; align-items: flex-start; }
.referral-cta { background: linear-gradient(135deg, var(--teal), var(--navy)); border-radius: 16px; padding: 50px; text-align: center; color: var(--white); margin-top: 60px; }
.referral-cta h3 { font-size: 1.8rem; margin-bottom: 14px; }
.referral-cta p { color: rgba(255,255,255,0.78); max-width: 480px; margin: 0 auto 28px; font-weight: 400; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 72px; left: 0; right: 0; background: var(--navy-dark);
    padding: 24px 5% 32px; gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .mission-grid, .giveback-inner, .contact-inner, .meeting-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .nav-logo-line2 { font-size: 0.85rem; }
}
