/* ===========================
   Global Styles
=========================== */
:root [data-theme=default] {
    --c-text: #666;
    --c-text-inverse: #fff;
    --c-background: #fff;
    --c-background-section: #e5e5e5;
    --c-primary: #da291c;
    --c-secondary-red: #f00;
    --c-secondary-black: #291b4f;
    --c-gray-100: #222221;
    --c-gray-90: #4a4f53;
    --c-gray-80: #999;
    --c-gray-70: #d1ccbd;
    --c-gray-60: #f3f2ee;
    --c-color-green: #45b383;
    --c-color-plum: #9a3324;
    --c-color-teal: #009ca6;
    --c-color-teal-dark: #007A82;
    --c-color-brown: #7f7a6b;
    --c-color-orange: #fc4c02;
    --c-color-mustard: #f2a900;
    --c-color-lemon-yellow: #fcd42b;
    --c-color-pink: #f6b0bd;
    --c-color-purple: #ae90c3;
    --c-gray-darker: #333;
    --c-status-success: #d1e7dd;
    --c-status-success-text: #0f5132;
    --c-status-warning: #fff3cd;
    --c-status-warning-text: #664d03;
    --c-status-error: #f8d7da;
    --c-status-error-text: #842029;
    --c-color-black: #000;
    --c-color-orange-dark: #f75c33;
    --c-color-primary-red-dark: #c62722;
    --c-color-biscuit-button: #bebaae;
    --c-color-teal-button: #058f97;
    --c-color-secondary-light-gray: rgba(34, 34, 33, 0.8);
    --c-color-gray-100-70: rgba(34, 34, 33, 0.7019607843);
    --c-color-gray-progress: #d9d9d9;
    --c-secondary-gray: #222221;
    --c-section-color-grey: #999;
    --c-color-white: #fff;
    --c-color-biscuit-light: #f1f0eb;
    --c-paypal-color: #019CDE;
    --c-biscuit: #d1ccbd;
    --c-biscuit_light: rgba(209, 204, 189, 0.3019607843);
    --c-biscuit_medium: rgba(209, 204, 189, 0.5019607843);
    --c-charcoal: #4a4f53;
    --c-grey: #999;
    --c-red: #da291c;
    --c-grey_lightest: #f5f5f5;
    --c-mustard: #f2a900;
    --c-orange: #fd673e;
    --c-green: #45b383;
    --c-pink: #f6b0bd;
    --c-purple: #ae90c3;
    --c-teal: #009ca6;
    --c-plum: #9a3324;
    --c-dark-red: #a51414;
    --c-white: #fff;
    --c-gradient_teal_1: #2d836e;
    --c-gradient_teal_2: #047a82;
}

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

html {
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: "Oswald", helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222221;
  background-color: #fff;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .container {
    width: 100%;
    padding-inline: 1.5rem;
  }

  .row {
    margin-left: -15px;
    margin-right: -15px;
  }
}

p {
  font-family: 'Lato', helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.463rem;
  font-size: 1.125rem;
  color: #222221;
}

h2 {
  font-family: "Oswald", helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
  position: relative;
  text-transform: uppercase;
  color: #222221;
  letter-spacing: -0.32px;
}


/* ===========================
   Header
=========================== */

.top-headline {
  display: flex;
  font-family: 'Lato', helvetica, sans-serif;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px;
  font-size: 13px;
  color: #fff;
  background-color: #ff7a00;
  background-image: linear-gradient(90deg, #d16909 0%, #ff7a00 50%, #d86e0c 100%);
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
}

.top-headline a,
.top-headline .tpbr-email {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  margin-left: 10px;
}

.top-headline a:hover {
  text-decoration: underline;
}

.aniation-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  margin-right: 20px;
}

.id-text {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  max-width: 100%;
}

.id-text i {
  margin-right: 5px;
}

.tpbr-manage {
  font-weight: 700;
}


.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  gap: 16px;
  min-width: 0;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
}

.header-logo img {
  height: 95px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.header-nav {
  flex: 1 1 auto;
  min-width: 0;
  margin-left: 24px;
}

.nav-menu {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 6px 12px;
}

.nav-item {
  position: relative;
}

.nav-item a {
  font-weight: 600;
  color: #222221;
  text-transform: uppercase;
  padding: 10px 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-item a:hover,
.nav-item.is-current > a {
 color: #ff7a00;
}

.nav-arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  transform: rotate(0deg); 
}

.has-submenu:hover .nav-arrow {
  transform: rotate(180deg);
}

.submenu {
  display: none;
  position: absolute;
  background: #fff;
  list-style: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 10px 0;
  top: 100%;
  left: 0;
  min-width: 200px;
  border-radius: 5px;
  z-index: 99;
}

.has-submenu:hover .submenu {
  display: block;
}

.submenu li a {
  padding: 8px 15px;
  display: block;
  color: #222221;
  transition: background 0.3s ease, color 0.3s ease;
}

.submenu li a:hover {
  background: #f8f8f8;
  color: #ff7a00;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-buttons .btn-donate,
.btn-donate {
  background: #ff7a00;
  color: #fff;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 0;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-donate:hover {
  background: #fc8618;
  transform: translateY(-2px);
}

.btn-search,
.btn-menu-toggle {
  background: none;
  display: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #222221;
}

.nav-item-icon,
.mobile-drawer-top,
.mobile-drawer-kicker,
.mobile-drawer-footer,
.nav-overlay {
  display: none;
}

.btn-menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
}

.menu-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #222221;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.btn-menu-toggle.open .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.btn-menu-toggle.open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.btn-menu-toggle.open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

/* ===========================
   Mobile / tablet drawer
=========================== */
@media (max-width: 991px) {
  .top-headline {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 8px 12px;
  }

  .aniation-text {
    display: none;
  }

  .id-text {
    flex: 1 1 auto;
    width: 100%;
  }

  .id-text p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 12px;
    margin: 0;
    width: 100%;
    min-width: 0;
  }

  .top-headline a,
  .top-headline .tpbr-email {
    margin-left: 0;
    font-size: 13px;
  }

  .header-container {
    height: 72px;
    gap: 12px;
  }

  .header-logo {
    flex: 1;
    min-width: 0;
  }

  .header-logo img {
    height: 48px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    object-position: left;
  }

  .header-buttons {
    flex-shrink: 0;
  }

  .header-buttons .btn-donate {
    padding: 8px 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(88vw, 400px);
    margin: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: -18px 0 40px rgba(34, 34, 33, 0.18);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s;
    z-index: 1200;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
  }

  .header-nav.active {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(34, 34, 33, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1100;
  }

  .nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px 14px;
    border-bottom: 1px solid #f0eee8;
    flex-shrink: 0;
  }

  .mobile-drawer-brand img {
    height: 42px;
    width: auto;
  }

  .btn-menu-close {
    width: 40px;
    height: 40px;
    border: 0;
    background: #f6f4ef;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
  }

  .btn-menu-close span {
    position: absolute;
    left: 11px;
    right: 11px;
    height: 2px;
    background: #222221;
    border-radius: 2px;
    top: 50%;
  }

  .btn-menu-close span:first-child {
    transform: rotate(45deg);
  }

  .btn-menu-close span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-drawer-kicker {
    display: block;
    margin: 18px 22px 8px;
    font-family: 'Lato', helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ff7a00;
    flex-shrink: 0;
  }

  .nav-menu {
    flex: 1 1 auto;
    min-height: 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
    padding: 0 16px 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .nav-item {
    background: #faf9f6;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .nav-item a {
    width: 100%;
    padding: 14px 14px;
    font-size: 15px;
    letter-spacing: 0.02em;
  }

  .nav-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #fff;
    color: #ff7a00;
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(34, 34, 33, 0.08);
  }

  .nav-item-label {
    flex: 1;
  }

  .has-submenu .nav-arrow {
    margin-left: 0;
    width: 18px;
    height: 18px;
    color: #999;
  }

  .has-submenu.open {
    background: #fff7f0;
  }

  .has-submenu.open .nav-arrow {
    transform: rotate(180deg);
    color: #ff7a00;
  }

  .has-submenu:hover .submenu,
  .submenu {
    display: block;
    position: static;
    min-width: 0;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    padding: 0 12px 0 50px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.32s ease, opacity 0.24s ease, padding 0.24s ease;
  }

  .has-submenu.open .submenu {
    max-height: 80vh;
    opacity: 1;
    padding: 0 12px 12px 50px;
  }

  .submenu li a {
    padding: 9px 0;
    font-family: 'Lato', helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #4a4f53;
    border-bottom: 1px solid #f0eee8;
  }

  .submenu li:last-child a {
    border-bottom: 0;
  }

  .submenu li a:hover {
    background: transparent;
    color: #ff7a00;
  }

  .mobile-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 20px 24px;
    border-top: 1px solid #f0eee8;
    background: #fff;
    flex-shrink: 0;
  }

  .mobile-drawer-donate {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, #ff7a00, #cb6100);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 16px;
    border-radius: 10px;
    letter-spacing: 0.04em;
  }

  .mobile-drawer-footer a:not(.mobile-drawer-donate) {
    font-family: 'Lato', helvetica, sans-serif;
    font-size: 14px;
    color: #4a4f53;
  }

  .mobile-drawer-footer a i {
    color: #ff7a00;
    margin-right: 8px;
  }

  .btn-menu-toggle {
    display: inline-flex;
  }
}

.hero-banner {
  position: relative;
  width: 100%;
  min-height: 720px;
  min-height: min(720px, calc(100vh - 120px));
  min-height: min(720px, calc(100dvh - 120px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  padding: 88px 0 132px;
}

.hero-banner__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 70% center;
  transform-origin: 72% 48%;
  animation: hero-zoom 24s ease-out forwards;
  z-index: 0;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 12, 8, 0.82) 0%, rgba(16, 12, 8, 0.58) 36%, rgba(16, 12, 8, 0.22) 62%, rgba(16, 12, 8, 0.08) 100%),
    linear-gradient(180deg, rgba(16, 12, 8, 0.28) 0%, transparent 32%, rgba(16, 12, 8, 0.55) 100%);
}

.hero-banner__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-banner__content {
  max-width: 640px;
}

.hero-banner__kicker {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #ffd7b0;
  font-family: 'Lato', helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-banner__kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: #ff7a00;
}

.hero-banner__content h1 {
  color: #fff;
  font-family: "Oswald", helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 20px;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.hero-banner__lead {
  color: #f3f2ee;
  font-size: 1.2rem;
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 32px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.hero-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-banner__actions .btn-primary {
  margin-top: 0;
}

.hero-banner .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.hero-banner .btn-ghost:hover,
.hero-banner .btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
  transform: translateY(-2px);
}

.hero-banner__facts {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  background: rgba(16, 12, 8, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 22px 0;
}

.hero-banner__facts ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hero-banner__facts li {
  color: #f3f2ee;
  font-family: 'Lato', helvetica, sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
  padding-left: 16px;
  border-left: 3px solid #ff7a00;
}

.hero-banner__facts span {
  display: block;
  font-family: "Oswald", helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}

@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner__image {
    animation: none;
  }

  .hero-banner .btn-ghost:hover,
  .hero-banner .btn-ghost:focus-visible {
    transform: none;
  }
}

.btn-primary {
  background: linear-gradient(90deg, #ff7a00, #cb6100);
  color: #ffffff;
  padding: 14px 30px;
  margin-top: 30px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  text-transform: uppercase;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background 0.25s ease, transform 0.2s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(90deg, #ff8a1d, #cb6100);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .hero-banner {
    min-height: 0;
    min-height: min(620px, calc(100dvh - 120px));
    padding: 56px 0 140px;
  }

  .hero-banner__inner {
    padding-inline: 1.5rem;
  }

  .hero-banner__content h1 {
    font-size: 2.8rem;
  }

  .hero-banner__facts ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 0;
    justify-content: flex-end;
    text-align: left;
    padding: 56px 0 0;
  }

  .hero-banner::before {
    background:
      linear-gradient(180deg, rgba(16, 12, 8, 0.18) 0%, rgba(16, 12, 8, 0.55) 38%, rgba(16, 12, 8, 0.88) 100%),
      linear-gradient(90deg, rgba(16, 12, 8, 0.45) 0%, rgba(16, 12, 8, 0.12) 100%);
  }

  .hero-banner__inner,
  .hero-banner__facts .container {
    width: 100%;
    max-width: none;
    padding-inline: 1.5rem;
  }

  .hero-banner__content {
    max-width: 100%;
    padding-bottom: 28px;
  }

  .hero-banner__content h1 {
    font-size: 2.2rem;
    margin-bottom: 14px;
  }

  .hero-banner__lead {
    font-size: 1.05rem;
    margin-bottom: 24px;
  }

  .hero-banner__actions {
    gap: 10px;
  }

  .hero-banner__facts {
    position: relative;
    margin-top: 0;
    background: rgba(16, 12, 8, 0.72);
  }

  .btn-primary,
  .hero-banner .btn-ghost {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-banner__content h1 {
    font-size: 1.85rem;
  }

  .hero-banner__kicker {
    letter-spacing: 0.1em;
  }

  .hero-banner__facts ul {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-banner__actions .btn-primary,
  .hero-banner .btn-ghost {
    justify-content: center;
  }
}

/* ===========================
   About Area
=========================== */
.about-section {
  padding: 100px 0 70px;
}

.about-text .title {
  font-family: "Oswald", helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2.63rem;
  margin-bottom: 24px;
  position: relative;
  text-transform: uppercase;
  color: #222221;
  letter-spacing: -0.32px;
}

.about-text .para,
.about-details .para {
  font-size: 1.125rem;
  font-weight: 400;
  color: #222221;
  word-break: break-word;
  line-height: 1.663rem;
}

.thumb-grid {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.thumb-grid .thumb {
  border-radius: 8px;
  object-fit: cover;
  height: 300px;
  width: 100%;
}

.thumb-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.thumb-stack .thumb {
  border-radius: 8px;
  object-fit: cover;
  height: 300px;
  width: 100%;
}

.about-image img {
  border-radius: 8px;
  height: 650px;
  object-fit: cover;
  width: 100%;
  margin-bottom: 30px;
}

.help-section {
  margin-bottom: 16px;
  max-width: 1272px;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 1.5rem;
}

.help-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.help-text {
  font-family: 'Lato', helvetica, sans-serif;
  color: #4a4f53;
  margin: 0;
}

.help-section__link {
  font-family: 'Lato', helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ff7a00;
  white-space: nowrap;
}

.help-section__link:hover {
  color: #cb6100;
}

.help-title {
  font-family: "Oswald", helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.4rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: #222221;
  letter-spacing: -0.32px;
  position: relative;
}

.help-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1272px;
  margin: auto;
  padding-inline: 1.5rem;
}

.help-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.help-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.help-card-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.help-card:hover img {
  transform: scale(1.06);
}

.help-card-text {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: max-content;
  background: #fff;
  border-radius: 4px;
  padding: 4px 10px;
}

.help-card-text span {
  font-family: "Oswald", helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #222;
  letter-spacing: -0.3px;
}

.help-card a:hover .help-card-text span {
  color: #ff7a00;
}

@media (max-width: 991px) {
  .help-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .help-cards {
    grid-template-columns: 1fr;
  }

  .help-card-image img {
    height: 220px;
  }
}
/* ==== DONATE SECTION ==== */
.donate-section {
  background: url(../images/vl-donate-thumb-bg-7.1.webp) center/cover no-repeat;
  padding: 100px 0;
  position: relative;
}

.donate-shape-left {
  position: absolute;
  top: 0;
  z-index: 1;
}

.donate-header .donate-subtitle {
  font-weight: 600;
  color: #122F2A;
}
.donate-header .donate-title {
  font-size: 44px;
  font-weight: 700;
  color: #122F2A;
  margin-top: 10px;
}

.donate-box {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
}
.nav-pills {
  display: flex;
  background: #F1F6F7;
  border-radius: 8px;
  margin-bottom: 20px;
}
.nav-pills .nav-link {
  flex: 1;
  padding: 16px 0;
  font-weight: 700;
  color: #181713;
}
.nav-pills .nav-link.active {
  background: #FF5528;
  color: #fff;
}

.donate-form {
  background: #F1F6F7;
  border-radius: 8px;
  padding: 24px;
}
.form-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.amount-buttons button {
  background: #F5F3F4;
  border-radius: 8px;
  padding: 14px 18px;
  margin: 0 10px 10px 0;
  font-weight: 700;
  transition: background 0.3s;
}
.amount-buttons button:hover {
  background: #FF5528;
  color: #fff;
}
input[type="number"] {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border: 1px solid #E0E2E3;
  border-radius: 8px;
  margin-top: 10px;
}

.payment-box label {
  display: inline-block;
  margin-right: 16px;
  font-weight: 700;
}
input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #121212;
  border-radius: 50%;
  margin-right: 6px;
  position: relative;
}
input[type="radio"]:checked::before {
  content: "";
  width: 10px;
  height: 10px;
  background: linear-gradient(90deg, #ff7a00, #cb6100);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.donate-box .btn-donate,
.donate-thumb .btn-donate {
  display: inline-block;
  background: linear-gradient(90deg, #ff7a00, #cb6100);
  color: #fff;
  padding: 14px 24px;
  font-weight: 700;
  border-radius: 8px;
  margin-top: 20px;
  transition: background 0.3s;
}
.btn-donate:hover {
  background: #e04720;
}
.btn-donate.btn-light {
  background: #fff;
  color: #122F2A;
}

.donate-thumb {
  background: url(./assets/img/work/vl-donate-thumb-7.1.png) center/cover no-repeat;
  padding: 140px 40px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
}
.play-icon a {
  background: #fff;
  color: #FF5528;
  width: 80px;
  height: 80px;
  display: inline-block;
  border-radius: 50%;
  line-height: 80px;
  font-size: 40px;
}
.video-subtitle a {
  font-style: italic;
  color: #fff;
  font-size: 22px;
  display: inline-block;
  margin: 20px 0 10px;
}
.video-title a {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

/* ==== Donations Section ==== */
section.donation-section {
  position: relative;
  width: 100%;
  margin-top: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 50px 20px;
  overflow: hidden;
  min-height: 580px;
}

/* Background overlay */
.donation-bg {
  position: absolute;
  inset: 0;
  background: url("../images/vl-donate-thumb-bg-7.1.webp") center/cover no-repeat;
  z-index: 1;
}

.donation-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85));
  z-index: 2;
}

.donation-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.donation-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #050505;
}

.donation-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.donation-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.donation-tab {
  position: relative;
  padding: 12px 22px;
  font-family: "Oswald", helvetica, sans-serif;
  background: #dadcdc;
  border: 2px solid #dadcdc;
  color: #050505;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: bold;
}

.donation-tab.active,
.donation-tab:has(input:checked) {
  background: linear-gradient(90deg, #ff7a00, #cb6100);
  border-color: #ff7a00;
  font-family: "Oswald", helvetica, sans-serif;
  color: #fff;
}

.donation-copy {
  margin: 0;
  color: #050505;
  font-size: 16px;
}

.donation-copy--monthly {
  display: none;
}

.donation-form:has([name="frequency"][value="monthly"]:checked) .donation-copy--once {
  display: none;
}

.donation-form:has([name="frequency"][value="monthly"]:checked) .donation-copy--monthly {
  display: block;
}

.donate-amounts {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.donate-btn {
  position: relative;
  background: #dadcdc;
  color: #000;
  font-family: "Oswald", helvetica, sans-serif;
  font-size: 16px;
  padding: 12px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.donate-btn.active,
.donate-btn:has(input:checked) {
  background: linear-gradient(90deg, #ff7a00, #cb6100);
  color: #fff;
  transform: scale(1.05);
}

.donate-suffix {
  display: none;
}

.donation-form:has([name="frequency"][value="monthly"]:checked) .donate-suffix {
  display: inline;
}

.donate-custom {
  width: 100%;
  max-width: 300px;
}

.donate-custom input {
  width: 100%;
  max-width: 300px;
  padding: 12px;
  font-size: 16px;
  text-align: center;
  border-radius: 6px;
  border: 2px solid #ff5528;
  outline: none;
  margin: 10px 0;
  background: none;
  color: #000;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.donate-custom input:focus {
  border-color: #ff7a00;
  box-shadow: 0 0 8px rgba(255, 85, 40, 0.6);
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.payment-methods label {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #050505;
  cursor: pointer;
}

.payment-methods input[type=radio] {
  accent-color: #ff5528;
  width: 18px;
  height: 18px;
}

.donate-now {
  display: inline-block;
  margin-top: 25px;
  background: linear-gradient(90deg, #ff7a00, #cb6100);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: "Oswald", helvetica, sans-serif;
  transition: background 0.3s ease, transform 0.2s ease;
}

.donate-now:hover {
  background: #e1481f;
  transform: scale(1.03);
}

.donation-note {
  margin: 12px 0 0;
  color: #4a4f53;
  font-size: 13px;
}

.donation-manage {
  margin-top: 10px;
  color: #cb6100;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
}

.donation-manage:hover,
.donation-manage:focus-visible {
  color: #ff7a00;
}

.help-manage {
  display: block;
  margin-top: 16px;
}

.donation-form__error {
  margin: 0 0 12px;
  color: #b42318;
  font-size: 14px;
}

.donation-form__status {
  background: #fff7f0;
  color: #cb6100;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 0 0 16px;
}

@media (max-width: 991px) {
  section.donation-section {
    padding: 50px 15px;
    min-height: 650px;
  }

  .donation-content {
    padding: 25px 15px;
  }

  .donation-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .donation-tab {
    font-size: 15px;
    padding: 10px 18px;
  }

  .donate-btn {
    font-size: 15px;
    padding: 10px 18px;
  }

  .donate-custom input {
    font-size: 15px;
    padding: 10px;
  }

  .payment-methods label {
    font-size: 14px;
  }

  .donate-now {
    font-size: 16px;
    padding: 10px 22px;
  }
}

@media (max-width: 576px) {
  .donation-content h2 {
    font-size: 26px;
  }

  .donation-tabs {
    flex-direction: column;
    gap: 10px;
  }

  .donate-amounts {
    flex-direction: column;
    gap: 10px;
  }

  .payment-methods {
    flex-direction: column;
    gap: 10px;
  }
}

/* How we work */
    .sp2 {
    padding: 100px 0 70px;
}
.mb-30 {
    margin-bottom: 30px;
}
@media (min-width: 992px) {
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
}
.mb-30 {
    margin-bottom: 30px;
}
.vl-section-title-6 .vl-subtitle {
    color: #181713;
    line-height: 20px;
    font-weight: 600;
}
.vl-section-title-6 .vl-subtitle span img {
    margin-top: -4px;
}
.vl-section-title-6 .vl-title {
    font-size: 44px;
    line-height: 52px;
    font-weight: 700;
    padding-top: 18px;
    padding-bottom: 16px;
    color: #181713;
}
.pb-32 {
    padding-bottom: 32px;
}
.vl-hero-btn .header-btn1-6,
.vl-hero-btn .header-btn1.header-btn1-6 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    padding: 17px 20px;
    transition: 0.3s;
}
.vl-hero-btn .header-btn1 {
    background: #FBD459;
    color: #181713;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    padding: 8px 8px 8px 20px;
    border-radius: 50px;
    display: inline-block;
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    transition: 1400ms;
}

.vl-hero-btn .header-btn1:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #181713;
    border-radius: 50px;
    z-index: -1;
    transform: scaleX(0);
    transition: 0.3s;
}
@media (min-width: 992px) {
    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
}
@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}
.vl-work-thumb-wrap-6 .vl-work-thumb-1 img {
    height: 322px;
    object-fit: cover;
    border-radius: 16px;
}
.w-100 {
    width: 100% !important;
}
.vl-work-iconbox-6 {
    background: #F5F3F4;
    border-radius: 8px;
    padding: 32px 24px;
    transition: 0.3s;
}
.vl-work-iconbox-6 .vl__work-icon {
    display: inline-block;
}
.p-relative {
    position: relative;
}
.vl-work-iconbox-6 .vl__work-icon span {
    background: #fff;
    height: 70px;
    width: 70px;
    display: inline-block;
    line-height: 70px;
    text-align: center;
    border-radius: 50px;
    transition: 0.3s;
}
.vl-work-iconbox-6 .vl__work-icon-num-top span
 {
    background: #FBD459;
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 50px;
    color: #181713;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.3s;
}
.vl-work-iconbox-6 .vl__work-content .title a {
    color: #181713;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
    padding-top: 24px;
    padding-bottom: 16px;
    transition: 0.3s;
    display: inline-block;
}
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex
;
    flex-wrap: wrap;
    margin-top: calc(-1 * 0);
    margin-right: calc(-.5 * 1.5rem);
    margin-left: calc(-.5 * 1.5rem);
}

/*Footer*/
.footer__main--wrapper {
  background-color: #f6f1e3;
  color: #3d4549;
  border: 0;
  padding: 42px 24px 18px;
  font-family: 'Lato', helvetica, sans-serif;
  line-height: 1.5;
}

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(160px, 1.15fr) minmax(130px, 0.85fr) minmax(150px, 1fr) minmax(180px, 1.25fr) minmax(200px, 1.15fr);
  gap: 28px 22px;
  align-items: start;
}

.footer__main--wrapper h2 {
  font-family: "Oswald", helvetica, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #16323d;
  margin: 0 0 12px;
}

.footer-brand {
  padding-top: 4px;
}

.footer-brand__logo {
  display: inline-block;
}

.footer-brand__logo img {
  width: min(180px, 100%);
  height: auto;
  display: block;
}

.footer-charity-no {
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #222221;
  line-height: 1.3;
}

.footer-manage {
  display: inline-block;
  margin-top: 8px;
  color: #e07000;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-manage:hover,
.footer-manage:focus-visible {
  color: #ff7a00;
  text-decoration: underline;
}

.footer-links {
  list-style: disc;
  margin: 0;
  padding-left: 1.15rem;
}

.footer-links li {
  margin-bottom: 7px;
}

.footer-links a {
  color: #222221;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #e07000;
}

.footer-address {
  font-style: normal;
  color: #3d4549;
}

.footer-address p {
  margin: 0 0 6px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #3d4549;
}

.footer-address a {
  color: #222221;
  text-decoration: none;
}

.footer-address a:hover,
.footer-address a:focus-visible {
  color: #e07000;
}

.footer-about p {
  margin: 10px 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #3d4549;
  max-width: 28ch;
}

.footer-register {
  display: inline-block;
  color: #16323d;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-register:hover,
.footer-register:focus-visible {
  color: #e07000;
  text-decoration: underline;
}

.footer-presence-kicker {
  margin: 0 0 2px;
  font-family: "Oswald", helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #16323d;
}

.footer-presence h2 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-flags li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 72px;
}

.footer-flag-card {
  display: block;
  width: 72px;
  height: 48px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(22, 50, 61, 0.12);
}

.footer-flag-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-flag-card--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #16323d;
  background: #fff7f0;
}

.footer-flag-label {
  font-family: "Oswald", helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #16323d;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #16323d;
  box-shadow: 0 1px 4px rgba(22, 50, 61, 0.1);
  transition: color 0.2s, background 0.2s;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: #fff;
  background: #e07000;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.footer-legal {
  margin-top: 28px;
  padding-top: 14px;
  border-top: 1px solid #c9a227;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #5c6164;
  max-width: none;
}

@media (max-width: 1100px) {
  .footer__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer__main--wrapper {
    padding: 36px 20px 16px;
  }

  .footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .footer-about p {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-flags {
    justify-content: flex-start;
  }
}

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
  isolation: isolate;
  background: #f6f1e3;
  color: #16323d;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader[hidden] {
  display: none !important;
}

.page-loader__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(320px, 100%);
  text-align: center;
}

.page-loader__glow {
  position: absolute;
  top: 8px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 112, 0, 0.22) 0%, rgba(246, 241, 227, 0) 70%);
  animation: page-loader-pulse 2.2s ease-in-out infinite;
  pointer-events: none;
}

.page-loader__logo {
  position: relative;
  z-index: 1;
  width: min(200px, 72vw);
  height: auto;
  margin-bottom: 22px;
  animation: page-loader-rise 0.7s ease both;
}

.page-loader__spinner {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.page-loader__spinner svg {
  display: block;
  width: 48px;
  height: 48px;
  animation: page-loader-spin 1.1s linear infinite;
}

.page-loader__track,
.page-loader__arc {
  fill: none;
  stroke-width: 3.5;
}

.page-loader__track {
  stroke: #e4d9c2;
}

.page-loader__arc {
  stroke: #e07000;
  stroke-linecap: round;
  stroke-dasharray: 72 54;
}

.page-loader__status {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  font-family: 'Lato', helvetica, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: #7a7264;
  line-height: 1.3;
}

.page-loader__dots::after {
  content: "";
  animation: page-loader-dots 1.2s steps(4, end) infinite;
}

.page-loader__bar {
  position: relative;
  z-index: 1;
  width: 148px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4d9c2;
}

.page-loader__bar-fill {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d16909, #ff7a00 50%, #d86e0c);
  animation: page-loader-bar 1.15s ease-in-out infinite;
}

@keyframes page-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes page-loader-pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes page-loader-rise {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes page-loader-bar {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(320%);
  }
}

@keyframes page-loader-dots {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader {
    transition: none;
  }

  .page-loader__glow,
  .page-loader__logo,
  .page-loader__spinner svg,
  .page-loader__bar-fill,
  .page-loader__dots::after {
    animation: none;
  }
}

@media (max-width: 560px) {
  .page-loader__logo {
    width: min(168px, 70vw);
    margin-bottom: 18px;
  }
}

#about,
#work,
#donate {
  scroll-margin-top: 104px;
}

#who-we-are,
#organization,
#history,
#where-we-work,
#faqs,
#ways,
#give,
#volunteer,
#fundraise,
#events,
#campaigns,
#partner,
#focus,
#grants,
#education,
#poverty,
#disability,
#who-we-help,
#where-we-serve,
#get-in-touch,
#message,
#office,
#register {
  scroll-margin-top: 170px;
}

.charity-details {
  padding: 90px 0 100px;
  background: #faf9f6;
}

.charity-details__intro {
  max-width: 720px;
  margin-bottom: 36px;
}

.charity-details__kicker {
  font-family: 'Lato', helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff7a00;
  margin-bottom: 10px;
}

.charity-details h2 {
  margin-bottom: 16px;
}

.charity-details__intro p,
.charity-details__office p {
  font-family: 'Lato', helvetica, sans-serif;
  color: #4a4f53;
}

.charity-details a,
.charity-details__intro a {
  color: #ff7a00;
  font-weight: 700;
}

.charity-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
  max-width: 720px;
}

.charity-stat {
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 8px 24px rgba(34, 34, 33, 0.06);
}

.charity-stat__label {
  display: block;
  font-family: 'Lato', helvetica, sans-serif;
  font-size: 13px;
  color: #7f7a6b;
  margin-bottom: 8px;
}

.charity-stat strong {
  font-size: 1.35rem;
  color: #222221;
  letter-spacing: -0.02em;
}

.charity-details__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.charity-details__card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 22px;
}

.charity-details__card h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.charity-details__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.charity-details__card li {
  font-family: 'Lato', helvetica, sans-serif;
  font-size: 15px;
  color: #4a4f53;
  padding-left: 14px;
  position: relative;
}

.charity-details__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff7a00;
}

.charity-details__office {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
}

.charity-details__note {
  max-width: 640px;
  font-size: 14px;
}

.charity-details__register {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  background: linear-gradient(90deg, #ff7a00, #cb6100);
  color: #fff !important;
  padding: 14px 20px;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 700;
}

@media (max-width: 991px) {
  .charity-stats,
  .charity-details__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .charity-details__office {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .charity-stats,
  .charity-details__grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   About page
=========================== */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 90px 0 56px;
  color: #fff;
}

.page-hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-left: 5%;
}

.page-hero__kicker,
.about-kicker {
  font-family: 'Lato', helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff7a00;
  margin-bottom: 12px;
}

.page-hero__kicker {
  color: #ffd7b0;
}

.page-hero h1 {
  font-family: "Oswald", helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.page-hero__lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #f3f2ee;
  max-width: 640px;
}

.about-nav,
.page-nav {
  position: sticky;
  top: 80px;
  z-index: 900;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #eee;
  backdrop-filter: blur(8px);
}

.about-nav ul,
.page-nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0;
  margin: 0;
}

.about-nav a,
.page-nav a {
  display: inline-flex;
  white-space: nowrap;
  font-family: 'Lato', helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4a4f53;
  padding: 8px 14px;
  border-radius: 999px;
  background: #faf9f6;
}

.about-nav a:hover,
.page-nav a:hover {
  background: #ff7a00;
  color: #fff;
}

.about-block {
  padding: 90px 0;
}

.about-block--tint {
  background: #faf9f6;
}

.about-block--map {
  background: #222221 url('../images/city-bg.png') center / cover no-repeat;
  color: #fff;
}

.about-block h2,
.about-cta h2 {
  line-height: 1.2;
}

.about-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.about-split__copy p {
  margin-bottom: 16px;
  color: #4a4f53;
}

.about-split__copy a {
  color: #f4fdf9;
  font-weight: 700;
}

.about-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.about-pills li {
  font-family: 'Lato', helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #cb6100;
  background: #fff7f0;
  padding: 8px 14px;
  border-radius: 999px;
}

.about-split__media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

.about-split__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.about-split__thumbs img {
  height: 140px;
}

.about-help-grid,
.about-area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-help-card,
.about-area-card {
  background: #fff;
  color: #222221;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 8px 24px rgba(34, 34, 33, 0.06);
}

.about-help-card h3,
.about-area-card h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  color: #222221;
  margin-bottom: 10px;
}

.about-help-card p,
.about-area-card p {
  font-size: 15px;
  color: #4a4f53;
  margin: 0;
}

.about-history {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.about-history > div > p {
  color: #4a4f53;
  margin-bottom: 28px;
}

.about-timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-left: 3px solid #ffe0c2;
  padding-left: 22px;
}

.about-timeline li {
  position: relative;
}

.about-timeline li::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff7a00;
  box-shadow: 0 0 0 4px #fff7f0;
}

.about-timeline span {
  display: block;
  font-family: 'Lato', helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff7a00;
  margin-bottom: 4px;
}

.about-timeline strong {
  display: block;
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.about-timeline p {
  font-size: 15px;
  color: #4a4f53;
  margin: 0;
}

.about-history__media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-history__media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
}

.about-section-intro {
  max-width: 720px;
  margin-bottom: 36px;
}

.about-block--map .about-kicker {
  color: #ffd7b0;
}

.about-block--map h2,
.about-block--map .about-section-intro p,
.about-block--map .about-office-note {
  color: #fff;
}

.about-area-grid {
  grid-template-columns: repeat(3, 1fr);
}

.about-area-card {
  background: rgba(255, 255, 255, 0.96);
}

.about-area-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff7f0;
  color: #ff7a00;
  font-size: 20px;
  margin-bottom: 16px;
}

.about-office-note {
  margin-top: 28px;
  font-size: 15px;
}

.about-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
}

.about-faq__item {
  background: #fff;
  border-radius: 16px;
  padding: 0 24px;
  box-shadow: 0 8px 24px rgba(34, 34, 33, 0.05);
}

.about-faq__question {
  list-style: none;
  cursor: pointer;
  font-family: "Oswald", helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.about-faq__question::-webkit-details-marker {
  display: none;
}

.about-faq__question::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff7f0;
  color: #ff7a00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
}

.about-faq__item[open] .about-faq__question::after {
  content: "–";
}

.about-faq__answer {
  padding: 0 0 22px;
}

.about-faq__answer p {
  margin: 0;
  color: #4a4f53;
}

.about-faq__answer a {
  color: #ff7a00;
  font-weight: 700;
}

.about-cta {
  background: linear-gradient(90deg, #ff7a00, #cb6100);
  padding: 56px 0;
  color: #fff;
}

.about-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.about-cta h2 {
  color: #fff;
  margin-bottom: 10px;
}

.about-cta p {
  color: #fff;
  margin: 0;
}

.about-cta .btn-primary {
  margin-top: 0;
  background: #fff;
  color: #cb6100;
  box-shadow: none;
}

.about-cta .btn-primary:hover {
  background: #fff7f0;
}

@media (max-width: 991px) {
  .about-nav,
  .page-nav {
    top: 72px;
  }

  .page-hero {
    min-height: 400px;
    padding: 88px 0 48px;
  }

  .page-hero__inner {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-inline: 1.5rem;
  }

  .page-hero h1 {
    font-size: 2.1rem;
  }

  .about-split,
  .about-history,
  .about-help-grid,
  .about-area-grid,
  .about-cta__inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .about-split__media img,
  .about-history__media img {
    height: 260px;
  }

  .about-help-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-cta__inner {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .about-help-grid {
    grid-template-columns: 1fr;
  }

  .about-block {
    padding: 64px 0;
  }

  .page-hero h1 {
    font-size: 1.7rem;
  }

  .about-nav ul,
  .page-nav ul {
    flex-wrap: wrap;
    overflow: visible;
  }
}

/* ===========================
   How You Can Help page
=========================== */
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.page-hero__actions .btn-primary {
  margin-top: 0;
}

.page-hero__ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.page-hero__ghost:hover,
.page-hero__ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
  transform: translateY(-2px);
}

.help-mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-areas:
    "donate volunteer fundraise"
    "donate events campaigns"
    "partner partner partner";
  gap: 16px;
}

.help-mosaic__card:nth-child(1) { grid-area: donate; }
.help-mosaic__card:nth-child(2) { grid-area: volunteer; }
.help-mosaic__card:nth-child(3) { grid-area: fundraise; }
.help-mosaic__card:nth-child(4) { grid-area: events; }
.help-mosaic__card:nth-child(5) { grid-area: campaigns; }
.help-mosaic__card:nth-child(6) { grid-area: partner; }

.help-mosaic__card {
  position: relative;
  display: block;
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
}

.help-mosaic__card--feature {
  min-height: 456px;
}

.help-mosaic__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.help-mosaic__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 34, 33, 0.08) 18%, rgba(34, 34, 33, 0.78) 100%);
}

.help-mosaic__card:hover img {
  transform: scale(1.06);
}

.help-mosaic__index {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  font-family: 'Lato', helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  background: rgba(255, 122, 0, 0.94);
  padding: 6px 10px;
  border-radius: 999px;
}

.help-mosaic__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 22px;
}

.help-mosaic__body h3 {
  font-size: 1.45rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.help-mosaic__body p {
  margin: 0;
  color: #f3f2ee;
  font-size: 15px;
  max-width: 38em;
}

.help-mosaic__card--feature .help-mosaic__body h3 {
  font-size: 2.05rem;
}

.help-mosaic__card--feature .help-mosaic__body p {
  font-size: 1.05rem;
}

.help-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
}

.help-steps li {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(34, 34, 33, 0.06);
}

.help-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #fff7f0;
  color: #ff7a00;
  font-family: "Oswald", helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
}

.help-steps h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.help-steps p {
  margin: 0;
  color: #4a4f53;
  font-size: 15px;
}

.help-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.help-contact a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  color: #222221;
  box-shadow: 0 8px 24px rgba(34, 34, 33, 0.06);
}

.help-contact span {
  font-family: 'Lato', helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff7a00;
}

.help-contact a:hover {
  color: #cb6100;
}

.help-trio-intro {
  max-width: 720px;
  margin-bottom: 36px;
}

.help-trio-intro p {
  color: #4a4f53;
}

.help-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.help-trio__card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(34, 34, 33, 0.06);
}

.help-trio__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.help-trio__card > div {
  padding: 22px;
}

.help-trio__card h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.help-trio__card p {
  color: #4a4f53;
  font-size: 15px;
  margin-bottom: 16px;
}

.help-trio__card p:last-child {
  margin-bottom: 0;
}

.help-trio__card a {
  color: #ff7a00;
  font-weight: 700;
}

.help-trio__card a:hover {
  color: #cb6100;
}

/* ===========================
   What We Do page
=========================== */
.work-mosaic {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-areas:
    "grants education poverty"
    "grants disability disability";
  gap: 16px;
}

.work-mosaic > :nth-child(1) { grid-area: grants; }
.work-mosaic > :nth-child(2) { grid-area: education; }
.work-mosaic > :nth-child(3) { grid-area: poverty; }
.work-mosaic > :nth-child(4) { grid-area: disability; }

.work-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.work-method {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 8px 24px rgba(34, 34, 33, 0.06);
}

.work-method__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff7f0;
  color: #ff7a00;
  font-size: 20px;
  margin-bottom: 16px;
}

.work-method h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.work-method p {
  margin: 0;
  color: #4a4f53;
  font-size: 15px;
}

.work-methods__pills {
  margin-top: 24px;
}

.vl-work-content-6 .help-section__link {
  display: inline-block;
  margin-bottom: 20px;
}

/* ===========================
   Contact page
=========================== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(34, 34, 33, 0.06);
  color: #222221;
}

.contact-card h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-card p {
  margin: 0;
  color: #4a4f53;
  font-size: 15px;
}

.contact-card:hover h3 {
  color: #ff7a00;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(34, 34, 33, 0.06);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.contact-form label {
  font-family: 'Lato', helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4a4f53;
}

.contact-form label span {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #7f7a6b;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid #eee;
  border-radius: 12px;
  padding: 12px 14px;
  font-family: 'Lato', helvetica, sans-serif;
  font-size: 16px;
  color: #222221;
  background: #faf9f6;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #ff7a00;
  box-shadow: 0 0 0 4px #fff7f0;
  background: #fff;
}

.contact-form .btn-primary {
  margin-top: 8px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.contact-form__error {
  margin: 0;
  color: #b42318;
  font-size: 13px;
}

.contact-form__success {
  background: #fff7f0;
  color: #cb6100;
  font-weight: 700;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.contact-aside {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(34, 34, 33, 0.06);
}

.contact-aside h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-aside p {
  color: #4a4f53;
  font-size: 15px;
  margin-bottom: 16px;
}

.contact-aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-aside a {
  color: #ff7a00;
  font-weight: 700;
}

.contact-aside a:hover {
  color: #cb6100;
}

.contact-map {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 16px;
  background: #f3f2ee;
}

#register .charity-details__office h2 {
  margin-bottom: 12px;
}

#register .charity-details__office p {
  max-width: 640px;
}

@media (max-width: 991px) {
  .contact-cards,
  .contact-panel,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 260px;
  }
}

.about-block--map a {
  color: #ffd7b0;
  font-weight: 700;
}

.about-block--map a:hover {
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .help-mosaic__card img,
  .help-card-image img {
    transition: none;
  }

  .help-mosaic__card:hover img,
  .help-card:hover img,
  .page-hero__ghost:hover,
  .page-hero__ghost:focus-visible {
    transform: none;
  }
}

@media (max-width: 991px) {
  .help-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "donate donate"
      "volunteer fundraise"
      "events campaigns"
      "partner partner";
  }

  .work-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "grants grants"
      "education poverty"
      "disability disability";
  }

  .help-mosaic__card,
  .help-mosaic__card--feature {
    min-height: 240px;
  }

  .help-mosaic__card--feature .help-mosaic__body h3 {
    font-size: 1.7rem;
  }

  .help-steps,
  .help-trio,
  .help-contact,
  .work-methods {
    grid-template-columns: 1fr;
  }

  .help-trio__card img {
    height: 180px;
  }
}

@media (max-width: 600px) {
  .help-mosaic {
    grid-template-columns: 1fr;
    grid-template-areas:
      "donate"
      "volunteer"
      "fundraise"
      "events"
      "campaigns"
      "partner";
  }

  .work-mosaic {
    grid-template-columns: 1fr;
    grid-template-areas:
      "grants"
      "education"
      "poverty"
      "disability";
  }

  .help-mosaic__card--feature .help-mosaic__body h3 {
    font-size: 1.45rem;
  }
}

/* ===========================
   Scaled desktops (1080p at 150% ≈ 1280×720)
=========================== */
@media (min-width: 992px) and (max-width: 1366px) {
  .aniation-text {
    display: none;
  }

  .top-headline {
    justify-content: flex-end;
  }

  .header-nav {
    margin-left: 12px;
  }

  .hero-banner__content h1 {
    font-size: 3.25rem;
  }

  .about-image img {
    height: 480px;
  }

  .about-text .title {
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .vl-section-title-6 .vl-title {
    font-size: 36px;
    line-height: 1.2;
  }
}

@media (min-width: 992px) and (max-width: 1280px) {
  .hero-banner {
    padding: 48px 0 116px;
  }

  .hero-banner__facts ul {
    gap: 16px;
  }

  .hero-banner__facts li {
    font-size: 0.88rem;
  }

  .about-help-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .charity-details__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .help-mosaic__card--feature {
    min-height: 400px;
  }

  .help-mosaic__card--feature .help-mosaic__body h3 {
    font-size: 1.7rem;
  }

  .help-trio__card img {
    height: 160px;
  }

  .footer__inner {
    gap: 22px 16px;
  }

  .footer-brand__logo img {
    width: min(150px, 100%);
  }

  .footer-presence h2 {
    font-size: 1.25rem;
  }

  .footer-flag-card {
    width: 64px;
    height: 42px;
  }
}

@media (max-height: 800px) {
  .hero-banner {
    padding: 28px 0 92px;
  }

  .hero-banner__content h1 {
    font-size: 2.85rem;
  }

  .hero-banner__lead {
    font-size: 1.05rem;
    margin-bottom: 18px;
  }

  .hero-banner__facts {
    padding: 14px 0;
  }

  .page-hero {
    min-height: 320px;
    padding: 64px 0 40px;
  }
}

@media (max-width: 991px) {
  .about-section {
    padding: 64px 0 48px;
  }

  .about-image img {
    height: 340px;
  }

  .thumb-stack .thumb {
    height: 200px;
  }

  .about-text .title {
    font-size: 1.85rem;
    line-height: 1.2;
  }

  .sp2 {
    padding: 64px 0 48px;
  }

  .vl-section-title-6 .vl-title {
    font-size: 30px;
    line-height: 1.2;
    padding-top: 8px;
  }

  .vl-work-thumb-wrap-6 .vl-work-thumb-1 img {
    height: 240px;
  }

  .help-section,
  .help-cards {
    padding-inline: 1.25rem;
  }

  .about-nav,
  .page-nav {
    top: 72px;
  }
}

@media (min-width: 1400px) {
  .header-nav {
    margin-left: 48px;
  }

  .nav-menu {
    gap: 18px;
  }

  .nav-item a {
    font-size: 15px;
    padding: 10px;
  }
}
