/* ======================================================
   CLOSEHAUL CAPITAL CHARITABLE — v2 Stylesheet
   Light, airy, image-forward design
   Colors: Navy #1B2B6B | Cyan #00AEEF | White/Light Blues
====================================================== */

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

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

:root {
  --navy:    #1B2B6B;
  --cyan:    #00AEEF;
  --gold:    #F4A623;
  --white:   #FFFFFF;
  --bg:      #F5F9FF;
  --bg2:     #EBF5FD;
  --text:    #1A2332;
  --muted:   #5A6A84;
  --border:  #D4E6F5;
  --shadow:  0 4px 28px rgba(27,43,107,0.09);
  --shadowL: 0 12px 48px rgba(27,43,107,0.14);
  --radius:  14px;
  --nav-h:   74px;
  --font:    'Poppins', sans-serif;
  --trans:   all 0.28s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── Typography ── */
h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 800; line-height: 1.12; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--muted); line-height: 1.75; }

.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 0.65rem;
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 100px 0; }
.section--bg  { background: var(--bg); }
.section--bg2 { background: var(--bg2); }
.section--navy { background: var(--navy); }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 50px; font-family: var(--font);
  font-size: 0.88rem; font-weight: 600; cursor: pointer; border: 2px solid transparent;
  transition: var(--trans); white-space: nowrap;
}
.btn-primary { background: var(--cyan); color: var(--white); border-color: var(--cyan); }
.btn-primary:hover { background: #009fd4; border-color: #009fd4; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,174,239,0.32); }
.btn-navy    { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: #142054; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(27,43,107,0.3); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 1.05rem 2.6rem; font-size: 0.95rem; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); transition: var(--trans);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(27,43,107,0.08);
}
.nav-inner {
  height: 100%; max-width: 1280px; margin: 0 auto;
  padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links a {
  padding: 0.45rem 0.75rem; font-size: 0.8rem; font-weight: 500;
  color: var(--text); border-radius: 8px; transition: var(--trans); white-space: nowrap;
}
.nav-links a:hover { color: var(--cyan); background: var(--bg); }
.nav-links a.active { color: var(--cyan); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); transition: var(--trans); border-radius: 2px; }
.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); padding: 1.25rem 1.5rem 2rem;
  box-shadow: 0 8px 32px rgba(27,43,107,0.12); z-index: 999; flex-direction: column; gap: 0.2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 0.7rem 1rem; font-size: 0.92rem; font-weight: 500; border-radius: 8px; color: var(--navy); }
.nav-mobile a:hover { background: var(--bg); color: var(--cyan); }
.nav-mobile .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: #0a1628;
}
.hero-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.55;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.3) 0%,
    rgba(10,22,40,0.1) 40%,
    rgba(10,22,40,0.65) 100%
  );
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  padding-top: var(--nav-h);
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; max-width: 720px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero .hero-sub { color: rgba(255,255,255,0.88); font-size: 1.15rem; max-width: 560px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem; padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.2); flex-wrap: wrap;
}
.hero-stat .num { font-size: 2.2rem; font-weight: 800; color: var(--cyan); line-height: 1; }
.hero-stat .lbl { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 0.3rem; }

/* Inner page hero */
.hero--inner { min-height: 48vh; align-items: flex-end; padding-bottom: 60px; }
.hero--inner .hero-content { padding-top: calc(var(--nav-h) + 20px); }
.hero--inner h1 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }

/* ── Photo Section ── */
.photo-section {
  position: relative; overflow: hidden;
  min-height: 480px; display: flex; align-items: center;
}
.photo-section-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.photo-section-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(27,43,107,0.88) 0%, rgba(27,43,107,0.4) 100%);
}
.photo-section-content {
  position: relative; z-index: 2;
  max-width: 600px; padding: 5rem 0;
}
.photo-section-content h2 { color: var(--white); margin-bottom: 1rem; }
.photo-section-content p  { color: rgba(255,255,255,0.82); margin-bottom: 2rem; }

/* ── Section Header ── */
.section-header { margin-bottom: 3.5rem; }
.section-header h2 { margin-top: 0.4rem; }
.section-header p  { margin-top: 0.9rem; max-width: 560px; font-size: 1.05rem; }
.section-header.text-center h2,
.section-header.text-center p { margin-left: auto; margin-right: auto; }

/* ── Cyan Divider ── */
.cyan-divider { height: 4px; width: 52px; background: var(--cyan); border-radius: 2px; margin: 0.85rem 0; }
.text-center .cyan-divider { margin: 0.85rem auto; }

/* ── Cards ── */
.card-grid   { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; }
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); gap: 2rem; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); transition: var(--trans);
  overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadowL); border-color: rgba(0,174,239,0.3); }
.card-body { padding: 2rem 2rem 2.25rem; }
.card-photo { height: 200px; overflow: hidden; background: var(--bg2); }
.card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-photo img { transform: scale(1.05); }
.card-icon {
  width: 50px; height: 50px; border-radius: 13px;
  background: linear-gradient(135deg, var(--cyan), #0085c9);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem; font-size: 1.3rem;
}
.card h3 { color: var(--navy); margin-bottom: 0.6rem; }
.card-tag {
  display: inline-block; background: rgba(0,174,239,0.1); color: var(--cyan);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.25rem 0.7rem; border-radius: 4px; margin-bottom: 0.6rem;
}
.card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--cyan); font-size: 0.87rem; font-weight: 600;
  margin-top: 1.1rem; transition: var(--trans);
}
.card-link:hover { gap: 0.7rem; }
.card-link svg { width: 15px; height: 15px; }

/* ── Two-col ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadowL); }
.two-col-photo img { width: 100%; height: 420px; object-fit: cover; }

/* ── Stats Band ── */
.stats-band { background: var(--navy); padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.stat-item .big-num { font-size: 2.75rem; font-weight: 800; color: var(--cyan); line-height: 1; margin-bottom: 0.4rem; }
.stat-item .stat-lbl { font-size: 0.88rem; color: rgba(255,255,255,0.65); }

/* ── Charities Band ── */
.charities-band { background: var(--bg); padding: 80px 0; }
.charity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.charity-item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem 1.25rem; text-align: center; transition: var(--trans);
}
.charity-item:hover { box-shadow: var(--shadow); border-color: var(--cyan); transform: translateY(-3px); }
.charity-logo { font-size: 2.2rem; margin-bottom: 0.6rem; }
.charity-name { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.charity-cat  { font-size: 0.72rem; color: var(--muted); margin-top: 0.2rem; }

/* ── Image Grid Section ── */
.image-mosaic { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 260px 260px; gap: 1rem; }
.mosaic-item { border-radius: 10px; overflow: hidden; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.mosaic-item:hover img { transform: scale(1.06); }
.mosaic-tall { grid-row: span 2; }

/* ── Blog Card ── */
.blog-card { border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--border); transition: var(--trans); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadowL); }
.blog-card-img { height: 210px; overflow: hidden; background: var(--bg2); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img .placeholder-icon { height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.4; }
.blog-card-body { padding: 1.5rem 1.75rem 2rem; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 { color: var(--navy); margin-bottom: 0.6rem; font-size: 1.1rem; }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--cyan); }
.blog-meta { display: flex; gap: 1rem; font-size: 0.78rem; color: var(--muted); margin-bottom: 0.6rem; flex-wrap: wrap; }

/* ── Blog Featured ── */
.blog-featured { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-bottom: 4rem; }
.blog-featured-img { min-height: 380px; overflow: hidden; background: var(--bg2); }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured-img .placeholder-icon { height: 100%; display: flex; align-items: center; justify-content: center; font-size: 5rem; opacity: 0.25; color: var(--navy); }
.blog-featured-body { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body h2 { color: var(--navy); margin: 0.75rem 0 1rem; font-size: 1.75rem; }
.blog-featured-body h2 a:hover { color: var(--cyan); }

/* ── Resource Card ── */
.resource-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem 2rem; display: flex; align-items: flex-start; gap: 1.25rem; transition: var(--trans); }
.resource-card:hover { transform: translateX(5px); border-left: 3px solid var(--cyan); box-shadow: var(--shadow); }
.resource-icon { width: 46px; height: 46px; min-width: 46px; border-radius: 11px; background: var(--bg2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.resource-card h4 { color: var(--navy); margin-bottom: 0.3rem; }
.resource-card p  { font-size: 0.88rem; margin-bottom: 0.7rem; }

/* ── Team Card ── */
.team-card { border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--border); transition: var(--trans); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadowL); }
.team-card-img { height: 260px; overflow: hidden; background: linear-gradient(135deg, var(--bg2), #cce9f8); display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 1.75rem; }
.team-card-body h3 { color: var(--navy); margin-bottom: 0.2rem; }
.team-card-role { color: var(--cyan); font-size: 0.82rem; font-weight: 600; margin-bottom: 0.9rem; }
.team-card-body p { font-size: 0.88rem; }

/* ── Testimonial ── */
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 2.25rem; border: 1px solid var(--border); transition: var(--trans); }
.testimonial-card:hover { box-shadow: var(--shadowL); transform: translateY(-3px); }
.testimonial-stars { color: #F5A623; font-size: 0.95rem; margin-bottom: 1.25rem; }
.testimonial-text { font-style: italic; color: var(--text); font-size: 0.97rem; line-height: 1.8; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--navy)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1rem; }
.testimonial-name { font-weight: 600; color: var(--navy); font-size: 0.92rem; }
.testimonial-info { font-size: 0.78rem; color: var(--muted); }

/* ── Contact Form ── */
.contact-form { background: var(--white); border-radius: var(--radius); padding: 3rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.45rem; }
.form-control { width: 100%; padding: 0.8rem 1.2rem; border: 1.5px solid var(--border); border-radius: 10px; font-family: var(--font); font-size: 0.92rem; color: var(--text); background: var(--white); transition: var(--trans); outline: none; }
.form-control:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,174,239,0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

/* ── CTA Section ── */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, #1a4a7a 100%); padding: 90px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: rgba(0,174,239,0.12); border-radius: 50%; }
.cta-section::after  { content: ''; position: absolute; bottom: -80px; left: -80px; width: 300px; height: 300px; background: rgba(0,174,239,0.08); border-radius: 50%; }
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); max-width: 620px; margin: 0 auto 1.25rem; }
.cta-section p  { color: rgba(255,255,255,0.8); max-width: 480px; margin: 0 auto 2.5rem; }

/* ── Footer ── */
.footer { background: #07101f; color: rgba(255,255,255,0.72); padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 40px; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.55); max-width: 290px; line-height: 1.75; }
.footer-col h5 { color: var(--white); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--trans); }
.footer-col ul li a:hover { color: var(--cyan); }
.footer-contact li { display: flex; gap: 0.7rem; margin-bottom: 0.8rem; font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.footer-bottom { padding-top: 1.75rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; color: rgba(255,255,255,0.38); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.38); }
.footer-legal a:hover { color: var(--cyan); }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Blog Post Content ── */
.post-content { max-width: 760px; margin: 0 auto; font-size: 1.02rem; line-height: 1.85; }
.post-content h2 { color: var(--navy); margin: 2.5rem 0 1rem; }
.post-content h3 { color: var(--navy); margin: 2rem 0 0.75rem; }
.post-content p  { color: #3a4558; margin-bottom: 1.5rem; }
.post-content ul, .post-content ol { padding-left: 1.75rem; margin-bottom: 1.5rem; }
.post-content li { color: #3a4558; margin-bottom: 0.45rem; }
.post-content blockquote { border-left: 4px solid var(--cyan); padding: 1rem 1.5rem; background: var(--bg); border-radius: 0 8px 8px 0; margin: 2rem 0; font-style: italic; color: var(--navy); }

/* ── Breadcrumb ── */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── Admin ── */
.admin-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.admin-panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.admin-panel h3 { color: var(--navy); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--cyan); }
.post-item { display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 1rem; background: var(--bg); border-radius: 8px; border: 1px solid var(--border); margin-bottom: 0.6rem; }
.post-item-title { font-weight: 500; font-size: 0.88rem; color: var(--navy); }
.post-item-date  { font-size: 0.78rem; color: var(--muted); }
.post-item-del   { background: none; border: none; color: #e74c3c; cursor: pointer; padding: 0.25rem 0.5rem; border-radius: 5px; }
.post-item-del:hover { background: rgba(231,76,60,0.1); }
.code-output { background: #0d1117; color: #7ee787; border-radius: 8px; padding: 1.25rem; font-family: 'Courier New', monospace; font-size: 0.8rem; white-space: pre-wrap; max-height: 280px; overflow-y: auto; margin-top: 1rem; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .image-mosaic { grid-template-rows: 200px 200px; }
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 260px; }
  .blog-featured-body { padding: 2.25rem; }
  .image-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 200px; }
  .mosaic-tall { grid-row: span 1; }
}
@media (max-width: 768px) {
  .section { padding: 65px 0; }
  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .charity-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .hero-stats { gap: 2rem; }
  .card-grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .charity-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form { padding: 2rem 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-section { padding: 65px 0; }
}
