/* =====================================================
   LoveLikeReed Demo Site — style.css
   Brand: blue, clean nonprofit aesthetic
   ===================================================== */

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

:root {
  --color-primary:   #1B5CA8;
  --color-primary-d: #14427A;
  --color-accent:    #2D5BE5;
  --color-accent-l:  #EBF0FC;
  --color-dark:      #1A2035;
  --color-text:      #2D3748;
  --color-text-light:#718096;
  --color-border:    #E2E8F0;
  --color-bg:        #FAFAFA;
  --color-white:     #FFFFFF;
  --color-warning:   #C53030;
  --shadow-sm:       0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:       0 4px 12px rgba(0,0,0,.1);
  --shadow-lg:       0 8px 30px rgba(0,0,0,.12);
  --radius:          8px;
  --radius-lg:       16px;
  --max-w:           1140px;
  --font:            'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-d); }

/* === SKIP LINK === */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--color-primary); color: #fff;
  padding: .5rem 1rem; z-index: 999; border-radius: 0 0 4px 0;
}
.skip-link:focus { top: 0; }

/* === LAYOUT === */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* === HEADER / NAV === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--color-white);
  border-bottom: 2px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 1rem;
  width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 1.5rem;
}
.site-logo { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.site-logo img { height: 44px; width: auto; }
.site-logo span { font-size: 1.1rem; font-weight: 700; color: var(--color-primary); }

.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav a {
  font-size: .9rem; font-weight: 500; color: var(--color-text);
  padding: .4rem .75rem; border-radius: 4px;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  background: var(--color-accent-l); color: var(--color-primary);
}
.site-nav .btn-donate-nav {
  background: var(--color-primary); color: #fff !important;
  padding: .4rem 1rem; border-radius: 4px;
  transition: background .2s;
}
.site-nav .btn-donate-nav:hover { background: var(--color-primary-d); }

.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: .5rem; color: var(--color-primary);
}
.nav-toggle svg { display: block; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: 1rem; font-weight: 600; padding: .75rem 1.75rem;
  border-radius: var(--radius); cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  border: none; text-decoration: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-d); color: #fff; }
.btn-secondary { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); }
.btn-secondary:hover { background: var(--color-accent-l); color: var(--color-primary-d); }
.btn-accent { background: var(--color-accent); color: #fff; }
.btn-accent:hover { background: #2347C8; color: #fff; }
.btn-lg { font-size: 1.125rem; padding: .9rem 2.25rem; }
.btn-full { width: 100%; }

/* === HERO === */
.hero {
  position: relative; min-height: 560px; display: flex; align-items: center;
  background: url('images/reed-closeup.png') right center / cover no-repeat;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(26,32,53,0.92) 0%,
    rgba(26,32,53,0.80) 45%,
    rgba(26,32,53,0.15) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  color: #fff; padding: 5rem 0;
}
.hero-tagline {
  display: inline-block; background: var(--color-accent); color: #fff;
  font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: .3rem .85rem; border-radius: 20px; margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.15;
  margin-bottom: 1.25rem; max-width: 680px;
}
.hero p {
  font-size: 1.125rem; max-width: 580px; margin-bottom: 2rem;
  opacity: .9; line-height: 1.7;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-sub {
  margin-top: 2.5rem; font-size: .875rem; opacity: .75;
  display: flex; align-items: center; gap: .5rem;
}

/* === SECTION HEADERS === */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-block; background: var(--color-accent-l); color: var(--color-primary);
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: .25rem .75rem; border-radius: 20px; margin-bottom: .75rem;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; color: var(--color-dark);
  margin-bottom: .75rem;
}
.section-header p { max-width: 600px; margin: 0 auto; color: var(--color-text-light); font-size: 1.05rem; }

/* === IMPACT STATS === */
.stats-section { background: var(--color-primary); color: #fff; padding: 4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; text-align: center; }
.stat-item { }
.stat-number { font-size: 2.75rem; font-weight: 800; color: #ffffff; line-height: 1; margin-bottom: .4rem; }
.stat-label { font-size: .95rem; opacity: .85; }

/* === SERVICES OVERVIEW === */
.services-section { padding: 5rem 0; background: var(--color-white); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: box-shadow .2s, transform .2s; text-align: center;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-icon {
  width: 64px; height: 64px; background: var(--color-accent-l);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.service-icon svg { width: 28px; height: 28px; color: var(--color-primary); }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; color: var(--color-dark); }
.service-card p { font-size: .95rem; color: var(--color-text-light); line-height: 1.6; margin-bottom: 1.25rem; }
.service-card a.link-arrow {
  font-size: .9rem; font-weight: 600; color: var(--color-primary);
  display: inline-flex; align-items: center; gap: .35rem;
}
.service-card a.link-arrow:hover { gap: .6rem; }

/* === HOW IT WORKS === */
.how-section { padding: 5rem 0; background: var(--color-accent-l); }
.steps-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3rem; }
.step-item { text-align: center; }
.step-number {
  width: 56px; height: 56px; background: var(--color-primary); color: #fff;
  font-size: 1.25rem; font-weight: 800; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step-img { width: 80px; height: 80px; margin: 0 auto 1rem; object-fit: contain; }
.step-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--color-dark); }
.step-item p { font-size: .9rem; color: var(--color-text-light); }

/* === ABOUT / STORY === */
.about-section { padding: 5rem 0; background: var(--color-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: var(--color-dark); margin-bottom: 1rem; }
.about-text p { color: var(--color-text-light); line-height: 1.8; margin-bottom: 1rem; }
.about-text blockquote {
  border-left: 4px solid var(--color-accent); padding: 1rem 1.5rem;
  margin: 1.5rem 0; background: var(--color-accent-l); border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; font-size: 1.05rem; color: var(--color-primary-d);
}
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.trust-badge {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--color-white); border-radius: var(--radius);
  padding: 1rem 1.25rem; box-shadow: var(--shadow-md);
  text-align: center; min-width: 150px;
}
.trust-badge .badge-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--color-primary); }
.trust-badge .badge-value { font-size: 1rem; font-weight: 700; color: var(--color-dark); margin-top: .25rem; }

/* === TESTIMONIALS === */
.testimonials-section { padding: 5rem 0; background: var(--color-bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--color-white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--color-border);
}
.testimonial-stars { color: #F6AD55; font-size: 1.1rem; margin-bottom: .75rem; }
.testimonial-card blockquote { font-style: italic; color: var(--color-text); line-height: 1.7; margin-bottom: 1rem; font-size: .95rem; }
.testimonial-author { font-size: .875rem; font-weight: 600; color: var(--color-text-light); }

/* === DONATE SECTION / PAGE === */
.donate-section { padding: 5rem 0; background: var(--color-accent-l); }
.donate-page-section { padding: 4rem 0; }
.donate-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 3rem; align-items: start; max-width: 1000px; margin: 0 auto; }
.donate-box {
  max-width: 680px; margin: 0 auto;
  background: var(--color-white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-lg);
}
.donate-box h2 { font-size: 1.5rem; font-weight: 700; color: var(--color-dark); margin-bottom: .5rem; }
.donate-box p.subtitle { color: var(--color-text-light); margin-bottom: 2rem; font-size: .95rem; }
.giving-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; margin-bottom: 1.5rem; }
.tier-btn {
  padding: .875rem .5rem; border: 2px solid var(--color-border);
  border-radius: var(--radius); background: var(--color-white);
  cursor: pointer; font-size: 1rem; font-weight: 700; color: var(--color-text);
  transition: border-color .2s, background .2s, color .2s;
  text-align: center;
}
.tier-btn:hover, .tier-btn.active {
  border-color: var(--color-primary); background: var(--color-accent-l); color: var(--color-primary);
}
.tier-btn small { display: block; font-size: .7rem; font-weight: 500; color: var(--color-text-light); margin-top: .2rem; }
.tier-btn.active small { color: var(--color-primary); }
.custom-amount-wrap { margin-bottom: 1.5rem; }
.custom-amount-wrap label { font-size: .9rem; font-weight: 600; color: var(--color-text); margin-bottom: .4rem; display: block; }
.custom-amount-input-row { display: flex; align-items: center; border: 2px solid var(--color-border); border-radius: var(--radius); overflow: hidden; }
.currency-prefix { padding: .7rem 1rem; background: var(--color-bg); font-weight: 600; color: var(--color-text-light); font-size: 1rem; border-right: 1px solid var(--color-border); }
.custom-amount-input-row input {
  flex: 1; border: none; outline: none; padding: .7rem .75rem;
  font-size: 1rem; font-weight: 600; color: var(--color-dark); background: transparent;
}
.donation-type-toggle { display: flex; gap: .5rem; margin-bottom: 1.5rem; }
.toggle-btn {
  flex: 1; padding: .55rem; border: 2px solid var(--color-border);
  border-radius: var(--radius); background: var(--color-white);
  cursor: pointer; font-size: .875rem; font-weight: 600; color: var(--color-text);
  transition: border-color .2s, background .2s, color .2s;
}
.toggle-btn.active { border-color: var(--color-primary); background: var(--color-accent-l); color: var(--color-primary); }

/* Stripe Element */
.stripe-section { }
.stripe-field-label { font-size: .9rem; font-weight: 600; color: var(--color-text); margin-bottom: .4rem; display: block; }
#stripe-card-element, #stripe-name, #stripe-email {
  border: 2px solid var(--color-border); border-radius: var(--radius);
  padding: .75rem 1rem; margin-bottom: 1rem;
  background: var(--color-white); font-size: 1rem;
}
#stripe-name, #stripe-email {
  width: 100%; outline: none; color: var(--color-dark); font-family: var(--font);
  transition: border-color .2s;
}
#stripe-name:focus, #stripe-email:focus { border-color: var(--color-primary); }
#stripe-card-element { min-height: 42px; }
#stripe-card-element.StripeElement--focus { border-color: var(--color-primary); }
.stripe-lock-note {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: var(--color-text-light); margin-top: .5rem;
}
.stripe-lock-note svg { flex-shrink: 0; color: var(--color-primary); }
.donate-cta-alt { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--color-border); text-align: center; font-size: .85rem; color: var(--color-text-light); }
.tax-note { font-size: .8rem; color: var(--color-text-light); text-align: center; margin-top: 1rem; }
.stripe-error { color: var(--color-warning); font-size: .875rem; margin-top: .5rem; display: none; }
.donate-success {
  display: none; text-align: center; padding: 3rem 2rem;
}
.donate-success svg { color: var(--color-accent); width: 64px; height: 64px; margin: 0 auto 1rem; }
.donate-success h3 { font-size: 1.5rem; font-weight: 700; color: var(--color-dark); margin-bottom: .5rem; }
.donate-success p { color: var(--color-text-light); }

/* === CONTACT FORM === */
.contact-section { padding: 5rem 0; background: var(--color-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-size: 1.75rem; font-weight: 700; color: var(--color-dark); margin-bottom: 1rem; }
.contact-info p { color: var(--color-text-light); line-height: 1.7; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.25rem; }
.contact-detail-icon { flex-shrink: 0; width: 40px; height: 40px; background: var(--color-accent-l); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--color-primary); }
.contact-detail-text a { color: var(--color-primary); font-weight: 500; }
.contact-detail-text span { display: block; font-size: .8rem; color: var(--color-text-light); }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--color-text); margin-bottom: .4rem; }
.form-group label .required { color: var(--color-warning); margin-left: .2rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .75rem 1rem;
  border: 2px solid var(--color-border); border-radius: var(--radius);
  font-size: 1rem; font-family: var(--font); color: var(--color-dark);
  background: var(--color-white); outline: none;
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--color-primary); }
.form-group input.error, .form-group textarea.error { border-color: var(--color-warning); }
.field-error { font-size: .8rem; color: var(--color-warning); margin-top: .3rem; display: none; }
.field-error.visible { display: block; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: none; text-align: center; padding: 2.5rem 1.5rem;
  background: var(--color-accent-l); border-radius: var(--radius-lg);
}
.form-success h3 { color: var(--color-primary); font-size: 1.25rem; margin-bottom: .5rem; }

/* === CRISIS RESOURCES === */
.crisis-section { padding: 4rem 0; }
.crisis-banner {
  background: var(--color-warning); color: #fff; text-align: center; padding: 1.5rem;
  border-radius: var(--radius-lg); margin-bottom: 3rem;
}
.crisis-banner h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: .4rem; }
.crisis-banner a { color: #fff; font-weight: 700; text-decoration: underline; }
.crisis-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.crisis-card {
  background: var(--color-white); border-radius: var(--radius-lg); padding: 1.75rem;
  border: 1px solid var(--color-border); box-shadow: var(--shadow-sm);
}
.crisis-card h3 { font-size: 1rem; font-weight: 700; color: var(--color-dark); margin-bottom: .5rem; }
.crisis-card .crisis-number { font-size: 1.35rem; font-weight: 800; color: var(--color-primary); margin-bottom: .25rem; }
.crisis-card p { font-size: .875rem; color: var(--color-text-light); }

/* === FAQ === */
.faq-section { padding: 5rem 0; background: var(--color-bg); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; text-align: left;
  background: none; border: none; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: var(--color-dark);
  gap: 1rem;
}
.faq-question svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--color-primary); transition: transform .2s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { display: none; padding-bottom: 1.25rem; color: var(--color-text-light); line-height: 1.8; font-size: .95rem; }
.faq-item.open .faq-answer { display: block; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary-d) 0%, var(--color-primary) 100%);
  color: #fff; padding: 4rem 0;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; right: -5%;  bottom: -30%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.page-hero h1 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; margin-bottom: .75rem; }
.page-hero p { max-width: 560px; opacity: .85; font-size: 1.05rem; }
.breadcrumb { font-size: .875rem; opacity: .75; margin-bottom: 1rem; display: flex; gap: .4rem; flex-wrap: wrap; }
.breadcrumb a { color: #fff; opacity: .8; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb span { opacity: .6; }

/* === ABOUT PAGE === */
.about-story-section { padding: 5rem 0; background: var(--color-white); }
.about-content { max-width: 780px; margin: 0 auto; }
.about-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--color-dark); margin: 2rem 0 1rem; }
.about-content p { color: var(--color-text-light); line-height: 1.85; margin-bottom: 1.25rem; }
.about-content blockquote { border-left: 4px solid var(--color-accent); padding: 1rem 1.5rem; background: var(--color-accent-l); border-radius: 0 var(--radius) var(--radius) 0; margin: 1.5rem 0; font-style: italic; color: var(--color-primary-d); font-size: 1.05rem; }
.photo-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2.5rem 0; }
.photo-gallery img { border-radius: var(--radius); height: 200px; object-fit: cover; width: 100%; }
.leadership-section { padding: 4rem 0; background: var(--color-bg); }
.leadership-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.leader-card { background: var(--color-white); border-radius: var(--radius-lg); padding: 1.75rem; text-align: center; border: 1px solid var(--color-border); }
.leader-avatar { width: 80px; height: 80px; background: var(--color-accent-l); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.leader-avatar svg { width: 36px; height: 36px; color: var(--color-primary); }
.leader-card h3 { font-size: 1rem; font-weight: 700; color: var(--color-dark); }
.leader-card p { font-size: .875rem; color: var(--color-text-light); }

/* === CTA BAND === */
.cta-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--color-primary-d), var(--color-primary));
  color: #fff; text-align: center;
}
.cta-band h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: .75rem; }
.cta-band p { opacity: .85; max-width: 520px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-band-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* === FOOTER === */
.site-footer { background: var(--color-dark); color: rgba(255,255,255,.8); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 44px; margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; opacity: .7; line-height: 1.7; margin-bottom: 1rem; }
.footer-501 { font-size: .8rem; opacity: .6; }
.footer-col h4 { font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--color-accent); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .875rem; opacity: .8; color: rgba(255,255,255,.8); transition: opacity .2s; }
.footer-col ul li a:hover { opacity: 1; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.footer-bottom p { font-size: .8rem; opacity: .55; }
.footer-phone { font-size: .875rem; opacity: .7; }
.footer-phone a { color: var(--color-accent); }

/* === SERVICE PAGE === */
.service-detail-section { padding: 5rem 0; background: var(--color-white); }
.service-detail-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: start; }
.service-detail h2 { font-size: 1.5rem; font-weight: 700; color: var(--color-dark); margin: 1.75rem 0 .75rem; }
.service-detail h2:first-child { margin-top: 0; }
.service-detail p { color: var(--color-text-light); line-height: 1.8; margin-bottom: 1rem; }
.service-detail ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.service-detail ul li { color: var(--color-text-light); margin-bottom: .5rem; line-height: 1.6; }
.service-sidebar { }
.sidebar-card {
  background: var(--color-accent-l); border-radius: var(--radius-lg); padding: 1.75rem;
  border: 1px solid rgba(45,91,229,.3); margin-bottom: 1.5rem;
}
.sidebar-card h3 { font-size: 1rem; font-weight: 700; color: var(--color-primary-d); margin-bottom: 1rem; }
.sidebar-card ul { list-style: none; }
.sidebar-card ul li { font-size: .9rem; color: var(--color-text); margin-bottom: .6rem; padding-left: 1.25rem; position: relative; }
.sidebar-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--color-primary); font-weight: 700; }
.sidebar-cta { background: var(--color-primary); border-radius: var(--radius-lg); padding: 1.75rem; text-align: center; color: #fff; }
.sidebar-cta h3 { font-weight: 700; margin-bottom: .5rem; }
.sidebar-cta p { font-size: .875rem; opacity: .85; margin-bottom: 1.25rem; }

/* === ELIGIBILITY CHECK === */
.eligibility-section { padding: 4rem 0; background: var(--color-accent-l); }
.eligibility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.eligibility-col { background: var(--color-white); border-radius: var(--radius-lg); padding: 2rem; }
.eligibility-col h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.eligibility-col.eligible h3 { color: var(--color-primary); }
.eligibility-col.not-eligible h3 { color: var(--color-warning); }
.eligibility-col ul { list-style: none; }
.eligibility-col ul li { padding: .5rem 0; border-bottom: 1px solid var(--color-border); font-size: .9rem; color: var(--color-text); display: flex; align-items: center; gap: .5rem; }
.eligibility-col ul li:last-child { border-bottom: none; }
.check-icon { color: var(--color-primary); flex-shrink: 0; }
.x-icon { color: var(--color-warning); flex-shrink: 0; }

/* === EVENTS / COMMUNITY === */
.events-section { padding: 5rem 0; background: var(--color-bg); }
.event-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.event-feature-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.event-feature-text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: var(--color-dark); margin-bottom: 1rem; }
.event-feature-text p { color: var(--color-text-light); line-height: 1.8; margin-bottom: 1rem; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .site-nav { gap: 0; }
  .site-nav a { padding: .4rem .45rem; font-size: .82rem; }
  .site-nav .btn-donate-nav { padding: .4rem .65rem; }
}

@media (max-width: 768px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--color-white); border-bottom: 2px solid var(--color-accent); padding: 1rem; gap: .25rem; box-shadow: var(--shadow-md); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .65rem 1rem; border-radius: var(--radius); white-space: normal; }
  .nav-toggle { display: block; }
  .header-inner { position: relative; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; }
  .trust-badge { position: static; margin-top: 1rem; display: inline-block; }

  .contact-grid { grid-template-columns: 1fr; }
  .donate-layout { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .eligibility-grid { grid-template-columns: 1fr; }
  .giving-tiers { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero::after { background: rgba(26,32,53,0.82); }
  .hero-content { padding: 3rem 0; }
  .hero-tagline { display: block; text-align: center; font-size: .7rem; }
  .services-grid { grid-template-columns: 1fr; }
  .event-feature { grid-template-columns: 1fr; }
  .event-feature-img { order: -1; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; max-width: 320px; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .cta-band-btns .btn { width: 100%; max-width: 300px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .donate-box { padding: 1.5rem; }
  .giving-tiers { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
  .photo-gallery { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === PHOTO SLIDESHOW === */
.slideshow {
  position: relative; border-radius: var(--radius-lg);
  margin: 2rem 0; background: #1A2035; aspect-ratio: 4/3; width: 100%;
}
.slideshow-track { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .5s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.slide-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.45); color: #fff; border: none; cursor: pointer;
  font-size: 2.5rem; line-height: 1; padding: .25rem .75rem; border-radius: 6px;
  transition: background .2s; z-index: 2;
}
.slide-btn:hover { background: rgba(0,0,0,.7); }
.slide-prev { left: .75rem; }
.slide-next { right: .75rem; }
.slide-dots {
  position: absolute; bottom: .75rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .4rem; z-index: 2;
}
.slide-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.5); border: none; cursor: pointer; padding: 0;
  transition: background .2s;
}
.slide-dot.active { background: #fff; }

/* === UTILITIES === */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.section-pad { padding: 5rem 0; }
