/* ==========================================================================
   UNIHAF — United Humanitarian Foundation
   Layout reproduced from the Nonta charity theme structure.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --orange: #df5311;
  --orange-dark: #c44710;
  --teal: #138999;
  --teal-dark: #12636e;
  --dark: #144047;
  --purple: #8139e7;
  --green: #2ec48d;
  --amber: #f9a51a;
  --blue: #1e9ad6;
  --red: #e8262d;
  --grey: #636363;
  --grey-light: #8a8a8a;
  --light: #f1f6f7;
  --peach: #fae5dc;
  --border: #ececec;
  --white: #fff;

  --container: 1170px;
  --container-wide: 1360px;
  --font: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 8px;
  --shadow-card: 0 10px 40px rgba(20, 64, 71, .08);
  --shadow-soft: 0 6px 30px rgba(20, 64, 71, .06);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--grey);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 18px;
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

h1 { font-size: 88px; font-weight: 800; line-height: 1.08; }
h2 { font-size: 40px; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 17px; }

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

a { color: var(--orange); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--dark); }

img { max-width: 100%; height: auto; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

button, input, textarea, select { font: inherit; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 15px;
}

.section { padding: 110px 0; }
.section-light { background: var(--light); }

.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col { padding: 0 15px; }

.text-center { text-align: center; }

/* Two-column helpers used by the inner pages */
.col-half { width: 50%; }
.col-55 { width: 55%; }
.col-45 { width: 45%; }
.col-pad { padding-left: 55px; }
.col-pad-sm { padding-left: 30px; }
.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;
}

/* --------------------------------------------------------------------------
   3. Shared components
   -------------------------------------------------------------------------- */

/* Eyebrow label — two orange dots + teal uppercase text */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
}

.eyebrow::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-top: 6px;
  background: var(--orange);
  box-shadow: 0 -7px 0 var(--orange);
  border-radius: 1px;
}

.eyebrow-light { color: var(--white); }

.section-head { margin-bottom: 55px; }
.section-head p { max-width: 640px; }
.section-head.text-center p { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: 2px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.btn svg { width: 15px; height: 15px; flex: none; }

.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--dark); color: var(--white); }

.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--orange); color: var(--white); }

.btn-white { background: var(--white); color: var(--orange); }
.btn-white:hover { background: var(--orange); color: var(--white); }

.btn-outline {
  background: transparent;
  border-color: var(--orange);
  color: var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); }

/* Decorative bits reused across sections */
.dot-grid {
  display: grid;
  grid-template-columns: repeat(8, 12px);
  gap: 12px;
  opacity: .35;
}
.dot-grid span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.sun-glow {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, #ffd166 32%, rgba(249, 165, 26, .55) 55%, rgba(249, 165, 26, 0) 72%);
}

/* --------------------------------------------------------------------------
   4. Top bar
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--light);
  font-size: 15px;
  color: var(--dark);
}

.topbar .container-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 48px;
}

.topbar-news { display: flex; align-items: center; gap: 8px; }
.topbar-news strong { color: var(--orange); font-weight: 500; }

.topbar-social { display: flex; align-items: center; gap: 16px; }
.topbar-social span { color: var(--dark); }
.topbar-social a { display: inline-flex; color: var(--dark); }
.topbar-social a svg { width: 16px; height: 16px; }
.topbar-social a:nth-child(2) { color: #3b5998; }
.topbar-social a:nth-child(3) { color: #1da1f2; }
.topbar-social a:nth-child(4) { color: #7c3aed; }
.topbar-social a:nth-child(5) { color: #e60023; }
.topbar-social a:hover { opacity: .7; }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: relative;
  z-index: 40;
  background: var(--white);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 98px;
  padding-left: 30px;
}

/* Angled teal panel behind the logo */
.logo-panel {
  position: absolute;
  top: 0;
  left: 150px;
  width: 205px;
  height: 100%;
  background: var(--teal);
  clip-path: polygon(0 0, 100% 0, 68% 100%, 0 100%);
  z-index: 0;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 12px 34px 12px 26px;
  background: var(--white);
  border: 1px dashed rgba(223, 83, 17, .45);
  border-radius: 999px;
}

.brand img { width: 240px; }

.main-nav { margin-left: 72px; }

.main-nav > ul { display: flex; align-items: center; gap: 6px; }

.main-nav > ul > li { position: relative; }

.main-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  border-radius: 5px;
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
}

.main-nav > ul > li > a .caret {
  width: 9px;
  height: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
}

.main-nav > ul > li.current > a,
.main-nav > ul > li:hover > a {
  background: var(--orange);
  color: var(--white);
}

/* Dropdowns */
.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 224px;
  padding: 12px 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 16px 50px rgba(20, 64, 71, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}

.main-nav li:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  display: block;
  padding: 9px 26px;
  font-size: 16px;
  color: var(--dark);
}
.submenu a:hover { color: var(--orange); padding-left: 32px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.header-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 86px;
  margin-left: 12px;
  background: var(--peach);
  border: 0;
  color: var(--dark);
  cursor: pointer;
}
.header-grid svg { width: 22px; height: 22px; }

.nav-toggle { display: none; }

/* --------------------------------------------------------------------------
   6. Hero slider
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  background: var(--dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s ease, visibility .9s;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide:first-child { position: relative; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.hero-slide.is-active .hero-bg { transform: scale(1); }

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 64, 71, .95) 0%, rgba(20, 64, 71, .88) 42%, rgba(18, 99, 110, .74) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 130px 0 150px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 26px;
}
.hero-badge svg { width: 74px; height: 74px; color: var(--white); }
.hero-badge span {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.6px #fff;
}

.hero h1 { color: var(--white); text-transform: uppercase; max-width: 900px; }

.hero p {
  max-width: 620px;
  margin: 22px 0 42px;
  font-size: 17px;
  color: rgba(255, 255, 255, .85);
}

.hero-actions { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }

.play-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
}
.play-link span.circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
}
.play-link span.circle svg { width: 16px; height: 16px; fill: var(--white); }
.play-link:hover { color: var(--white); }
.play-link:hover span.circle { background: rgba(255, 255, 255, .15); }

/* Hero decorations */
.hero-arrow { position: absolute; top: 40px; left: 20px; width: 220px; color: rgba(255, 255, 255, .5); z-index: 2; }
.hero-dots { position: absolute; top: 40px; left: 270px; color: rgba(255, 255, 255, .55); z-index: 2; }
.hero-sun { position: absolute; bottom: 130px; left: -40px; z-index: 2; }

.hero-emblem {
  position: absolute;
  right: 9%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 152px;
  height: 152px;
  border-radius: 50%;
  background: #e8262d;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
}
.hero-emblem svg { width: 82px; height: 82px; color: var(--white); }

/* Slide pagination */
.hero-pager {
  position: absolute;
  right: 34px;
  bottom: 110px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 8px;
  background: var(--white);
  border-radius: 999px;
}
.hero-pager button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.hero-pager button:nth-child(1).is-active { background: var(--orange); color: var(--white); }
.hero-pager button:nth-child(2).is-active { background: var(--teal); color: var(--white); }
.hero-pager button:nth-child(3).is-active { background: var(--purple); color: var(--white); }

/* --------------------------------------------------------------------------
   7. Feature pills
   -------------------------------------------------------------------------- */
.features { position: relative; padding: 0 0 40px; }

.features-band {
  position: relative;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 46px 40px;
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
}

.features-band::before,
.features-band::after {
  content: "";
  position: absolute;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 14px solid rgba(249, 165, 26, .16);
  border-radius: 50%;
}
.features-band::before { left: -40px; }
.features-band::after { right: -40px; }

.feature-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 30px 20px 20px;
  border-radius: 999px;
  color: var(--white);
}
.feature-orange { background: var(--orange); }
.feature-teal { background: var(--teal); }
.feature-purple { background: var(--purple); }

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 62px;
  height: 62px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .28);
}
.feature-icon svg { width: 30px; height: 30px; }
.feature-orange .feature-icon svg { color: var(--orange); }
.feature-teal .feature-icon svg { color: var(--teal); }
.feature-purple .feature-icon svg { color: var(--purple); }

.feature h5 { margin: 0 0 2px; font-size: 20px; color: var(--white); }
.feature p { font-size: 15px; line-height: 1.5; color: rgba(255, 255, 255, .88); }

/* --------------------------------------------------------------------------
   8. About
   -------------------------------------------------------------------------- */
.about { position: relative; padding: 90px 0 110px; overflow: hidden; }

.about .row { align-items: center; }
.about .col-media { width: 50%; }
.about .col-text { width: 50%; padding-left: 55px; }

.about-media { position: relative; padding: 0 40px 40px 0; }

.about-frame {
  position: absolute;
  top: -22px;
  left: -30px;
  width: 190px;
  height: 380px;
  border: 26px solid var(--amber);
  border-right: 0;
  z-index: 0;
}

.about-media img.main {
  position: relative;
  z-index: 2;
  width: 100%;
  border: 10px solid var(--white);
  box-shadow: var(--shadow-card);
}

.about-badge {
  position: absolute;
  right: 8px;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
}
.about-badge::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(19, 137, 153, .5);
  border-radius: 50%;
}
.about-badge svg { width: 46px; height: 46px; color: var(--teal); }

.quote-box {
  display: flex;
  gap: 18px;
  margin: 28px 0;
  padding: 20px;
  background: var(--light);
  border-radius: 6px;
}
.quote-box img { width: 62px; height: 62px; object-fit: cover; border-radius: 4px; flex: none; }
.quote-box .quote-icon { flex: none; width: 26px; height: 26px; color: var(--teal); }
.quote-box p { font-size: 15px; font-style: italic; line-height: 1.6; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--dark);
}
.check-list li svg { width: 18px; height: 18px; margin-top: 5px; flex: none; }
.check-list li span { flex: 1; }
.check-list li:nth-child(odd) svg { color: var(--orange); }
.check-list li:nth-child(even) svg { color: var(--teal); }

.about .btn { margin-top: 30px; }

.paint-splat,
.donate-splat {
  position: absolute;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cg fill='%23df5311'%3E%3Cpath d='M148 44c18-14 30 4 26 22s10 20 26 12 34 6 26 24-2 26 14 30 18 26 0 34-30-2-40 12-30 20-40 6-24-10-34 4-32 8-32-10 6-26-8-32-6-36 22-4 26-20-2-30 14-32 22 6 38 4 12-14 14-24z'/%3E%3C/g%3E%3Cg fill='%23f9a51a'%3E%3Cpath d='M196 30c14-8 24 8 16 20s-24 8-22-6zM252 96c12-4 20 12 8 20s-24-4-16-14zM66 62c10-10 24 2 16 14s-24 2-20-8zM40 176c12-6 22 8 12 18s-24 0-18-10zM238 214c14-4 20 14 8 20s-22-8-14-16zM152 268c12-6 22 6 14 16s-24 2-18-10z'/%3E%3Ccircle cx='276' cy='52' r='9'/%3E%3Ccircle cx='24' cy='118' r='7'/%3E%3Ccircle cx='104' cy='288' r='8'/%3E%3Ccircle cx='288' cy='168' r='6'/%3E%3C/g%3E%3Cg fill='%23df5311'%3E%3Ccircle cx='34' cy='36' r='6'/%3E%3Ccircle cx='266' cy='262' r='7'/%3E%3Ccircle cx='190' cy='294' r='5'/%3E%3C/g%3E%3C/svg%3E");
}

.paint-splat {
  right: -50px;
  bottom: 20px;
  width: 300px;
  height: 300px;
  opacity: .9;
}

/* --------------------------------------------------------------------------
   9. Services (staggered cards)
   -------------------------------------------------------------------------- */
.services { position: relative; overflow: hidden; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.service-card {
  padding: 16px 16px 26px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 22px 55px rgba(20, 64, 71, .14); }

/* the staggered rhythm of the original grid */
.services-grid .service-card:nth-child(3n+1) { margin-top: 60px; }
.services-grid .service-card:nth-child(3n+3) { margin-top: 30px; }

/* four-across variant used by the objectives */
.services-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.services-grid.cols-4 .service-card:nth-child(3n+1),
.services-grid.cols-4 .service-card:nth-child(3n+3) { margin-top: 0; }
.services-grid.cols-4 .service-card:nth-child(even) { margin-top: 48px; }

.service-card img {
  width: 100%;
  aspect-ratio: 350 / 225;
  object-fit: cover;
  border-radius: 14px;
}

.service-card h5 { margin: 22px 6px 16px; font-size: 20px; }
.service-card h5 a { color: var(--dark); }
.service-card h5 a:hover { color: var(--orange); }

.service-meta { display: flex; align-items: center; gap: 16px; padding: 0 6px; }

.service-meta .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
}
.service-meta .icon svg { width: 24px; height: 24px; }
.service-meta p { font-size: 14px; line-height: 1.5; }

.bg-orange { background: var(--orange); }
.bg-teal { background: var(--teal); }
.bg-purple { background: var(--purple); }
.bg-amber { background: var(--amber); }
.bg-green { background: var(--green); }
.bg-blue { background: var(--blue); }

.services .decor-mesh {
  position: absolute;
  top: 60px;
  left: 40px;
  width: 140px;
  height: 140px;
  background:
    repeating-linear-gradient(45deg, var(--teal) 0 1.5px, transparent 1.5px 18px),
    repeating-linear-gradient(-45deg, var(--orange) 0 1.5px, transparent 1.5px 18px);
  opacity: .55;
}
.services .sun-glow { position: absolute; top: 130px; right: 30px; }

/* --------------------------------------------------------------------------
   10. Donate band + causes
   -------------------------------------------------------------------------- */
.donate-band {
  position: relative;
  padding: 100px 0 110px;
  background: var(--teal-dark);
  overflow: hidden;
}
.donate-band .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .22;
}
.donate-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 99, 110, .95) 0%, rgba(19, 137, 153, .82) 100%);
}

.donate-band .container { position: relative; z-index: 3; }
.donate-band .row { align-items: flex-start; }
.donate-band .col-text { width: 55%; }
.donate-band .col-card { width: 45%; padding-left: 30px; }
.donate-band h2 { color: var(--white); max-width: 480px; }
.donate-band p { max-width: 470px; color: rgba(255, 255, 255, .85); margin-bottom: 32px; }

.donate-card {
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.donate-card-body { padding: 30px 32px 24px; }
.donate-card h5 { text-transform: uppercase; letter-spacing: .04em; margin-bottom: 12px; }
.donate-card p { font-size: 15px; color: var(--grey); margin-bottom: 22px; }

.donate-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
}
.donate-stats li { display: flex; align-items: center; gap: 12px; }
.donate-stats .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
}
.donate-stats .icon svg { width: 19px; height: 19px; }
.donate-stats h6 { margin: 0; font-size: 16px; }

.donate-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  border-top: 1px solid var(--border);
}
.donate-card-foot h4 { margin: 0; font-size: 22px; }
.donate-card-foot .plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: var(--orange);
}
.donate-card-foot .plus svg { width: 18px; height: 18px; }

.donate-splat {
  left: -90px;
  top: 70px;
  z-index: 2;
  width: 280px;
  height: 280px;
  opacity: .95;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cg fill='%23f9a51a'%3E%3Cpath d='M148 44c18-14 30 4 26 22s10 20 26 12 34 6 26 24-2 26 14 30 18 26 0 34-30-2-40 12-30 20-40 6-24-10-34 4-32 8-32-10 6-26-8-32-6-36 22-4 26-20-2-30 14-32 22 6 38 4 12-14 14-24z'/%3E%3C/g%3E%3Cg fill='%23ffc247'%3E%3Cpath d='M196 30c14-8 24 8 16 20s-24 8-22-6zM252 96c12-4 20 12 8 20s-24-4-16-14zM66 62c10-10 24 2 16 14s-24 2-20-8zM40 176c12-6 22 8 12 18s-24 0-18-10zM238 214c14-4 20 14 8 20s-22-8-14-16zM152 268c12-6 22 6 14 16s-24 2-18-10z'/%3E%3Ccircle cx='276' cy='52' r='9'/%3E%3Ccircle cx='24' cy='118' r='7'/%3E%3Ccircle cx='104' cy='288' r='8'/%3E%3Ccircle cx='288' cy='168' r='6'/%3E%3Ccircle cx='34' cy='36' r='6'/%3E%3Ccircle cx='266' cy='262' r='7'/%3E%3C/g%3E%3C/svg%3E");
}

.causes { padding: 100px 0 110px; }
.causes .section-head { margin-bottom: 45px; }

.causes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cause-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
}
.cause-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

.cause-thumb { position: relative; }
.cause-thumb img { width: 100%; aspect-ratio: 500 / 350; object-fit: cover; }
.cause-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 5px 16px;
  background: var(--orange);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
}

.cause-body { padding: 26px 24px 6px; }
.cause-body h5 { margin-bottom: 10px; font-size: 19px; }
.cause-body h5 a { color: var(--dark); }
.cause-body h5 a:hover { color: var(--orange); }
.cause-body p { font-size: 15px; }

.cause-foot { padding: 20px 24px 24px; border-top: 1px solid var(--border); margin-top: 22px; }

.progress {
  position: relative;
  height: 5px;
  margin: 18px 0 12px;
  background: var(--border);
  border-radius: 3px;
}
.progress span {
  display: block;
  height: 100%;
  border-radius: 3px;
}
.progress .bubble {
  position: absolute;
  top: -34px;
  transform: translateX(-50%);
  padding: 2px 9px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
}
.progress .bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top-color: inherit;
  border-bottom: 0;
}

.cause-figures {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

/* --------------------------------------------------------------------------
   11. Testimonial
   -------------------------------------------------------------------------- */
.testimonial { padding: 0 0 110px; }

.testimonial-card {
  position: relative;
  display: flex;
  align-items: stretch;
  max-width: 1160px;
  margin: 0 auto;
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
}

.testimonial-shape {
  position: relative;
  flex: none;
  width: 330px;
  background: var(--amber);
}
.testimonial-shape .wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.testimonial-body { padding: 44px 60px; }
.testimonial-body h4 { margin-bottom: 12px; }
.testimonial-body p { font-style: italic; font-size: 15px; max-width: 480px; }
.testimonial-more {
  display: inline-block;
  margin: 22px 0 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--purple);
}
.testimonial-author h5 { margin: 0; font-size: 18px; }
.testimonial-author span { font-size: 15px; color: var(--grey); }

/* --------------------------------------------------------------------------
   12. Project tiles (projects.html)
   -------------------------------------------------------------------------- */
.project-tile {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
}
.project-tile img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .5s ease; }
.project-tile:hover img { transform: scale(1.08); }
.project-tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 20px 18px;
  background: linear-gradient(180deg, transparent, rgba(20, 64, 71, .9));
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}


/* --------------------------------------------------------------------------
   13. Process
   -------------------------------------------------------------------------- */
.process { padding: 100px 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}
.process-grid::before,
.process-grid::after {
  content: "";
  position: absolute;
  top: 46px;
  width: 22%;
  height: 46px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.process-grid::before {
  left: 24%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 46'%3E%3Cpath d='M2 6 C60 60 140 60 198 12' fill='none' stroke='%23138999' stroke-width='2' stroke-dasharray='6 8' stroke-linecap='round'/%3E%3C/svg%3E");
}
.process-grid::after {
  right: 24%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 46'%3E%3Cpath d='M2 12 C60 60 140 60 198 6' fill='none' stroke='%23df5311' stroke-width='2' stroke-dasharray='6 8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.process-step { text-align: center; }
.process-grid .process-step:nth-child(2) { margin-top: 40px; }

.process-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.process-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px dashed currentColor;
  border-radius: 50%;
  opacity: .55;
}
.process-icon svg { width: 40px; height: 40px; }
.process-step:nth-child(1) .process-icon { color: var(--orange); }
.process-step:nth-child(2) .process-icon { color: var(--teal); }
.process-step:nth-child(3) .process-icon { color: var(--purple); }

.process-step h5 { margin-bottom: 10px; }
.process-step p { font-size: 15px; max-width: 300px; margin: 0 auto; }

.process .btn { margin-top: 50px; }

/* --------------------------------------------------------------------------
   14. Quote / contact band
   -------------------------------------------------------------------------- */
.quote-band {
  position: relative;
  padding: 90px 0 0;
  background: var(--teal-dark);
  overflow: hidden;
}
.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.2' opacity='.25'%3E%3Cellipse cx='180' cy='150' rx='120' ry='80'/%3E%3Cellipse cx='420' cy='190' rx='150' ry='95'/%3E%3Cellipse cx='650' cy='140' rx='110' ry='70'/%3E%3Cellipse cx='300' cy='300' rx='90' ry='55'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%;
  opacity: .5;
}

.quote-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1.05fr 1.15fr;
  gap: 30px;
  align-items: stretch;
}

.quote-photo {
  padding: 8px;
  background: var(--white);
  border-radius: 4px;
}
.quote-photo img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }

.quote-form {
  padding: 40px 34px;
  background: var(--white);
  border-radius: 4px;
  text-align: center;
}
.quote-form h3 { margin-bottom: 4px; font-size: 28px; }
.quote-form > span { display: block; margin-bottom: 26px; font-size: 15px; }
.quote-form input {
  width: 100%;
  margin-bottom: 14px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 15px;
  background: var(--white);
}
.quote-form input::placeholder { color: #9b9b9b; }
.quote-form input:focus { outline: none; border-color: var(--teal); }
.quote-form .btn { width: 100%; justify-content: center; margin-top: 8px; }

.quote-map {
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  min-height: 420px;
}
.quote-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

.contact-strip {
  position: relative;
  z-index: 3;
  margin-top: 80px;
  padding: 60px 0 0;
  background: var(--white);
  border-radius: 120px 120px 0 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding-bottom: 10px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.contact-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--white);
}
.contact-card .icon svg { width: 26px; height: 26px; }
.contact-card h5 { margin: 0 0 2px; font-size: 19px; }
.contact-card p { font-size: 15px; line-height: 1.5; }
.contact-card a { color: var(--grey); }
.contact-card a:hover { color: var(--orange); }

/* --------------------------------------------------------------------------
   14b. Affiliations
   -------------------------------------------------------------------------- */
.affiliations {
  padding: 95px 0 100px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.affiliations .section-head { margin-bottom: 45px; }

.affiliation-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.affiliation-card {
  flex: 1 1 250px;
  max-width: 300px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: box-shadow .3s ease, transform .3s ease;
}
.affiliation-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }

.affiliation-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--white);
}
.affiliation-card .icon svg { width: 25px; height: 25px; }

.affiliation-card strong {
  display: block;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--dark);
}
.affiliation-card span {
  display: block;
  font-size: 14px;
  line-height: 1.45;
  color: var(--grey);
}

/* --------------------------------------------------------------------------
   15. Blog
   -------------------------------------------------------------------------- */
.blog { padding: 90px 0 100px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

.post-thumb { position: relative; }
.post-thumb img { width: 100%; aspect-ratio: 500 / 350; object-fit: cover; }
.post-cat {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 5px 15px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
}

.post-body { padding: 22px 24px 20px; }
.post-meta { font-size: 14px; margin-bottom: 8px; }
.post-meta a { color: var(--grey); }
.post-body h5 { margin-bottom: 10px; font-size: 19px; }
.post-body h5 a { color: var(--dark); }
.post-body h5 a:hover { color: var(--orange); }
.post-body p { font-size: 15px; }

.post-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}
.post-foot a { color: var(--dark); font-weight: 500; }
.post-foot a:hover { color: var(--orange); }

.blog .btn { margin-top: 50px; }

/* --------------------------------------------------------------------------
   16. Newsletter
   -------------------------------------------------------------------------- */
.newsletter {
  position: relative;
  padding: 60px 0;
  background: var(--orange);
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 200'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='2' opacity='.16'%3E%3Ccircle cx='90' cy='60' r='34'/%3E%3Ccircle cx='300' cy='140' r='46'/%3E%3Ccircle cx='500' cy='50' r='28'/%3E%3Cpath d='M0 170 Q150 110 320 170 T600 150'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
}

.newsletter .container-wide {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}
.newsletter h3 { color: var(--white); max-width: 480px; margin: 0; }

.newsletter form {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  max-width: 520px;
  padding: 6px;
  background: var(--white);
  border-radius: 6px;
}
.newsletter input {
  flex: 1;
  padding: 12px 18px;
  border: 0;
  background: transparent;
  font-size: 15px;
}
.newsletter input:focus { outline: none; }
.newsletter button {
  padding: 13px 26px;
  border: 0;
  border-radius: 4px;
  background: var(--teal);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: background .25s ease;
}
.newsletter button:hover { background: var(--dark); }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  padding: 80px 0 0;
  background: var(--teal);
  color: rgba(255, 255, 255, .85);
  overflow: hidden;
}
.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 74px;
  height: 260px;
  background:
    linear-gradient(180deg, rgba(249, 165, 26, 0) 0%, rgba(249, 165, 26, .9) 40%, var(--amber) 100%);
  opacity: .8;
  -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 5px, transparent 5px 8px);
  mask-image: repeating-linear-gradient(90deg, #000 0 5px, transparent 5px 8px);
}
.site-footer::before { left: 6px; transform: skewX(-9deg); }
.site-footer::after { right: 46px; transform: skewX(7deg); }

.footer-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.25fr .85fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-brand img { width: 190px; margin-bottom: 20px; background: rgba(255,255,255,.94); padding: 10px 14px; border-radius: 6px; }
.footer-brand p { font-size: 15px; color: rgba(255, 255, 255, .8); }

.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  color: var(--white);
}
.footer-social a svg { width: 15px; height: 15px; }
.footer-social a:hover { background: var(--orange); border-color: var(--orange); }

.site-footer h4 { margin-bottom: 26px; font-size: 21px; color: var(--white); }

.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 15px; color: rgba(255, 255, 255, .82); }
.footer-links a:hover { color: var(--white); padding-left: 5px; }

.footer-contacts p { font-size: 15px; margin-bottom: 12px; color: rgba(255, 255, 255, .85); }
.footer-contacts a { color: rgba(255, 255, 255, .85); }
.footer-contacts a:hover { color: var(--white); }

.footer-bottom {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  font-size: 14px;
}
.footer-bottom nav { display: flex; gap: 22px; }
.footer-bottom a { color: rgba(255, 255, 255, .85); }
.footer-bottom a:hover { color: var(--white); }

.footer-edge { height: 22px; background: #0b1416; }

/* Back to top */
.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .3s ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   18. Inner page banner
   -------------------------------------------------------------------------- */
.page-banner {
  position: relative;
  padding: 120px 0;
  background: var(--dark);
  text-align: center;
  overflow: hidden;
}
.page-banner .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .3;
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 64, 71, .88), rgba(19, 137, 153, .7));
}
.page-banner .container { position: relative; z-index: 3; }
.page-banner h1 { font-size: 54px; color: var(--white); margin-bottom: 10px; }
.breadcrumb { display: flex; justify-content: center; gap: 10px; font-size: 15px; color: rgba(255, 255, 255, .8); }
.breadcrumb a { color: var(--white); }

.prose h3 { margin-top: 36px; }
.prose ul { margin: 0 0 20px; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: 8px; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.info-card {
  padding: 30px;
  background: var(--light);
  border-radius: 10px;
}
.info-card h5 { margin-bottom: 12px; }

.fact-box {
  margin: 26px 0;
  padding: 26px 28px;
  background: var(--light);
  border-left: 4px solid var(--teal);
  border-radius: 6px;
}
.fact-box h5 { margin-bottom: 10px; font-size: 18px; }
.fact-box p { font-size: 15px; line-height: 1.7; }
.fact-box p + p { margin-top: 12px; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: box-shadow .3s ease, transform .3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.team-avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
}
.team-card h5 { margin-bottom: 4px; font-size: 20px; }
.team-card span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--teal);
}
.team-note {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--grey-light);
}

/* FAQ */
.faq-item {
  margin-bottom: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border: 0;
  background: var(--white);
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
}
.faq-q svg { width: 16px; height: 16px; flex: none; color: var(--orange); transition: transform .3s ease; }
.faq-item.is-open .faq-q { background: var(--light); }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 22px; font-size: 15px; }
.faq-item.is-open .faq-a { display: block; }

/* --------------------------------------------------------------------------
   19. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1400px) {
  .logo-panel { left: 140px; width: 192px; }
  .brand img { width: 200px; }
  .brand { padding: 12px 28px 12px 22px; }
  .main-nav { margin-left: 48px; }
  .main-nav > ul > li > a { padding: 11px 13px; font-size: 16px; }
  .header-grid { display: none; }
}

@media (max-width: 1199px) {
  h1 { font-size: 62px; }
  h2 { font-size: 34px; }
  .services-grid,
  .services-grid.cols-4,
  .affiliation-grid,
  .causes-grid,
  .blog-grid,
  .contact-cards,
  .feature-list { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card:nth-child(3n+1),
  .services-grid .service-card:nth-child(3n+3),
  .services-grid.cols-4 .service-card:nth-child(even) { margin-top: 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr 1fr; }
  .quote-map { grid-column: 1 / -1; }
  .process-grid::before, .process-grid::after { display: none; }
}

@media (max-width: 991px) {
  .section { padding: 70px 0; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
  }
  .nav-toggle svg { width: 22px; height: 22px; }
  .logo-panel { display: none; }
  .header-inner { padding: 14px 0; min-height: 0; }
  .brand img { width: 168px; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 10px 15px 20px;
    background: var(--white);
    box-shadow: 0 18px 40px rgba(20, 64, 71, .14);
    display: none;
  }
  .main-nav.is-open { display: block; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav > ul > li > a { padding: 13px 8px; }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 8px 18px;
    display: none;
  }
  .main-nav li.is-open > .submenu { display: block; }
  .header-actions { gap: 14px; }
  .header-actions .btn { padding: 13px 20px; }

  .hero { min-height: 640px; }
  .hero-content { padding: 90px 0 120px; }
  .hero-emblem, .hero-arrow, .hero-dots { display: none; }
  .hero-slide::after { background: rgba(20, 64, 71, .86); }
  .hero-pager {
    right: auto;
    left: 15px;
    bottom: 26px;
    flex-direction: row;
    padding: 6px 10px;
  }

  .col-half,
  .col-55,
  .col-45 { width: 100%; }
  .col-pad,
  .col-pad-sm { padding-left: 15px; }
  .col-half + .col-half,
  .col-55 + .col-45 { margin-top: 45px; }

  .about .col-media,
  .about .col-text,
  .donate-band .col-text,
  .donate-band .col-card { width: 100%; padding-left: 15px; }
  .about .col-text { margin-top: 50px; }
  .donate-band .col-card { margin-top: 40px; }
  .donate-band { padding-bottom: 120px; }

  .testimonial-card { flex-direction: column; }
  .testimonial-shape { width: 100%; height: 150px; }
  .testimonial-body { padding: 32px 28px; }

  .quote-grid { grid-template-columns: 1fr; }
  .contact-strip { border-radius: 60px 60px 0 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  h3 { font-size: 24px; }
  .topbar .container-wide { flex-direction: column; gap: 4px; padding: 10px 15px; }
  .services-grid,
  .services-grid.cols-4,
  .affiliation-grid,
  .causes-grid,
  .blog-grid,
  .contact-cards,
  .feature-list,
  .process-grid,
  .footer-grid,
  .team-grid { grid-template-columns: 1fr; }
  .process-grid .process-step:nth-child(2) { margin-top: 0; }
  .features-band { padding: 30px 20px; }
  .hero-badge span { font-size: 24px; }
  .hero-actions { gap: 20px; }
  .newsletter .container-wide { flex-direction: column; align-items: flex-start; }
  .about-frame { display: none; }
  .page-banner h1 { font-size: 34px; }
  .page-banner { padding: 70px 0; }

  .header-actions .btn { padding: 12px 16px; font-size: 12px; gap: 8px; }
  .brand img { width: 150px; }
  .brand { padding: 9px 18px 9px 14px; }
  .topbar { font-size: 13px; }
  .topbar-social { gap: 12px; }
  .quote-form { padding: 30px 20px; }
  .testimonial-body { padding: 26px 20px; }
}
