:root {
  --bg: #faf8f5;
  --bg2: #f1ede7;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --accent: #c0392b;
  --accent2: #e74c3c;
  --teal: #1abc9c;
  --blue: #4a6cf7;
  --warm: #e8914a;
  --text: #333;
  --text2: #666;
  --text3: #999;
  --border: #e0dbd3;
  --white: #fff;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ANIM */
.anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.anim.show {
  opacity: 1;
  transform: none;
}

/* LABELS / TAGS */
.label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.label.light {
  color: var(--teal);
  border-color: var(--teal);
  opacity: 0.9;
}

.label.dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px 32px;
  border-radius: 8px;
  transition: all 0.3s var(--ease);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn.filled {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.25);
}

.btn.filled:hover {
  background: #a93226;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192, 57, 43, 0.35);
}

.btn.ghost {
  border: 1.5px solid var(--border);
  color: var(--text);
}

.btn.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn.wide {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 0.95rem;
  margin-top: 24px;
}

/* ===== HEADER & NAVBAR ===== */
#site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--bg);
  transition: all 0.35s var(--ease);
}

#site-header.solid {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

#navbar {
  padding: 16px 0;
  transition: padding 0.35s var(--ease);
}

#site-header.solid #navbar {
  padding: 10px 0;
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--dark);
}

.brand span {
  color: var(--accent);
}

.nav-mid {
  display: flex;
  gap: 32px;
}

.nav-mid a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text2);
  transition: color 0.3s;
}

.nav-mid a:hover {
  color: var(--accent);
}

.nav-cta {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--accent);
  color: var(--white);
  padding: 8px 22px;
  border-radius: 6px;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: #a93226;
}

.burger {
  display: none;
  color: var(--dark);
}

.mobile-dropdown {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.mobile-dropdown a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text2);
}

@media (max-width: 768px) {

  .nav-mid,
  .nav-container>.nav-cta {
    display: none;
  }

  .burger {
    display: block;
  }

  .mobile-dropdown.open {
    display: flex;
  }
}

/* ===== HERO SPLIT ===== */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px 80px 0;
  margin-left: max(24px, calc((100vw - 1140px)/2 + 24px));
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-left h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
}

.hero-left h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-left>p {
  font-size: 1.1rem;
  color: var(--text2);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-mini-stats {
  display: flex;
  gap: 0;
  align-items: center;
}

.hero-mini-stats>div {
  text-align: center;
}

.hero-mini-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--dark);
}

.hero-mini-stats span {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text3);
}

.sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 28px;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  max-width: 280px;
}

.hero-card strong {
  display: block;
  font-size: 0.8rem;
  color: var(--dark);
}

.hero-card span {
  font-size: 0.7rem;
  color: var(--text3);
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 140px 24px 60px;
    margin-left: 0;
  }

  .hero-right {
    height: 50vh;
  }
}

/* ===== MISSION ===== */
.mission {
  padding: 100px 0;
  background: var(--white);
}

.mission-top {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.mission-top h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.mission-top p {
  color: var(--text2);
  line-height: 1.8;
}

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.4s var(--ease);
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.pillar h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.pillar p {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .mission-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .mission-pillars {
    grid-template-columns: 1fr;
  }
}

/* ===== CRISIS ===== */
.crisis-section {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}

.crisis-header {
  text-align: center;
  margin-bottom: 60px;
}

.crisis-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-top: 16px;
}

.crisis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.crisis-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.4s;
}

.crisis-stat:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.cs-number {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--accent2);
  margin-bottom: 8px;
}

.crisis-stat h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.crisis-stat p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .crisis-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .crisis-grid {
    grid-template-columns: 1fr;
  }
}

/* MINAB */
.minab-block {
  margin-bottom: 48px;
}

.minab-inner {
  background: rgba(192, 57, 43, 0.12);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.minab-left {
  max-width: 520px;
}

.minab-left h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin: 12px 0 16px;
}

.minab-left p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.minab-sub {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
}

.minab-number {
  font-family: var(--serif);
  font-size: 8rem;
  color: var(--accent2);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .minab-inner {
    flex-direction: column;
    padding: 32px;
    text-align: center;
  }

  .minab-number {
    font-size: 5rem;
  }
}

/* IMPACT LIST */
.impact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.impact-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.3s;
}

.impact-row:hover {
  background: rgba(255, 255, 255, 0.06);
}

.ir-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}

.impact-row h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.impact-row p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ===== REGIONS SECTION ===== */
.regions-section {
  padding: 100px 0 60px;
  background: var(--dark2);
  color: var(--white);
}

.regions-header {
  text-align: center;
  margin-bottom: 60px;
}

.regions-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-top: 16px;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.region-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  border-radius: 16px;
  transition: all 0.3s;
}

.region-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.rc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.region-card h3 {
  font-size: 1.25rem;
  font-family: var(--serif);
  margin: 0;
}

.rc-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.1em;
}

.rc-badge.critical {
  background: rgba(231, 76, 60, 0.2);
  color: #ff6b6b;
}

.rc-badge.severe {
  background: rgba(232, 145, 74, 0.2);
  color: #ffb169;
}

.region-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .regions-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 100px 0;
  background: var(--bg);
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark);
  margin: 16px 0 16px;
}

.gallery-header p {
  color: var(--text2);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.gallery-item:hover .gi-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gi-overlay strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.gi-overlay span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gi-overlay {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
  padding: 60px 0 100px;
  background: var(--white);
}

.timeline-header {
  text-align: center;
  margin-bottom: 60px;
}

.timeline-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-top: 16px;
}

.timeline-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.tl-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 40px;
}

.tl-item:last-child {
  margin-bottom: 0;
}

.tl-dot {
  position: absolute;
  top: 4px;
  left: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent);
  z-index: 2;
  box-shadow: 0 0 0 4px var(--white);
}

.tl-content time {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}

.tl-content h4 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.tl-content p {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.6;
}

/* ===== FUND ===== */
.fund-section {
  padding: 100px 0;
  background: var(--bg);
}

.fund-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.fund-top {
  background: var(--dark);
  color: var(--white);
  padding: 40px 48px;
}

.fund-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.blink {
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.fund-top h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.fund-body {
  padding: 40px 48px;
}

.fund-collected {
  margin-bottom: 20px;
}

.fc-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text3);
}

.fc-amount {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--dark);
  margin-top: 4px;
}

.fund-bar {
  height: 12px;
  background: var(--bg2);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}

.fb-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--warm));
  border-radius: 6px;
  transition: width 2s var(--ease);
  position: relative;
}

.fund-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text3);
  margin-bottom: 32px;
}

.fund-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
  background: var(--bg);
  border-radius: 12px;
  margin-bottom: 8px;
}

.fund-metrics strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--dark);
}

.fund-metrics span {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text3);
}

@media (max-width: 600px) {

  .fund-top,
  .fund-body {
    padding: 28px;
  }

  .fund-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ALLOCATION */
.alloc-section {
  margin-top: 60px;
}

.alloc-section h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.alloc-intro {
  color: var(--text2);
  margin-bottom: 32px;
  line-height: 1.7;
}

.alloc-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ai-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.ai-bar {
  height: 8px;
  background: var(--bg2);
  border-radius: 4px;
  overflow: hidden;
}

.ai-fill {
  height: 100%;
  width: 0;
  background: var(--c);
  border-radius: 4px;
  transition: width 1.5s var(--ease);
}

/* ===== NEWS ===== */
.news-section {
  padding: 100px 0;
  background: var(--white);
}

.news-header {
  text-align: center;
  margin-bottom: 48px;
}

.news-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-top: 16px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.news-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s;
}

.news-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.news-item time {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ni-tag {
  display: inline-block;
  margin-left: 12px;
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.news-item h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--dark);
  margin: 12px 0 8px;
}

.news-item p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 100px 0;
  background: var(--bg2);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-top: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.faq-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}

.faq-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.faq-card h4 {
  font-size: 1.1rem;
  font-family: var(--serif);
  color: var(--dark);
  margin-bottom: 12px;
}

.faq-card p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.f-brand .brand {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: inline-block;
}

.f-brand .brand span {
  color: var(--accent2);
}

.f-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* ===== TRUSTED BY ===== */
.trusted-by {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.tb-inner {
  text-align: center;
}

.tb-inner span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text3);
  margin-bottom: 24px;
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text3);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--serif);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.logo-item:hover {
  opacity: 1;
  color: var(--dark);
}

/* ===== VOICES / TESTIMONIALS ===== */
.voices-section {
  padding: 100px 0;
  background: var(--bg);
}

.voices-header {
  text-align: center;
  margin-bottom: 60px;
}

.voices-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-top: 16px;
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.voice-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.4s;
}

.voice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--white);
}

.vc-icon {
  margin-bottom: 24px;
  opacity: 0.8;
}

.voice-card p {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.vc-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.vc-author span {
  font-size: 0.75rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .voices-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SUBSCRIBE FORM ===== */
.f-subscribe {
  display: flex;
  margin-bottom: 24px;
}

.f-subscribe input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-radius: 6px 0 0 6px;
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}

.f-subscribe input:focus {
  border-color: var(--accent);
}

.f-subscribe button {
  padding: 0 20px;
  background: var(--accent);
  color: var(--white);
  border-radius: 0 6px 6px 0;
  font-size: 1.2rem;
  transition: background 0.3s;
}

.f-subscribe button:hover {
  background: #a93226;
}

/* ===== FOOTER LINKS ===== */
.f-links h4,
.f-social h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.f-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.f-links a:hover {
  color: var(--white);
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}

.social-row a:hover {
  border-color: var(--accent2);
  color: var(--accent2);
}

.f-bottom {
  text-align: center;
  padding: 20px;
}

.f-bottom p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* BACK TO TOP */
.to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(192, 57, 43, 0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 90;
}

.to-top.vis {
  opacity: 1;
  transform: none;
}

.to-top:hover {
  background: #a93226;
  transform: translateY(-2px);
}

/* ===== DONATION MODAL ===== */
.donate-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.75);
  backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s;
}

.donate-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.donate-modal {
  background: var(--white);
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
  max-width: 520px;
  width: 100%;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.5s cubic-bezier(0.2, 1.2, 0.6, 1);
  padding: 48px;
  text-align: center;
  overflow: hidden;
}

.donate-modal-overlay.open .donate-modal {
  transform: none;
}

/* Modal Glow / Decor */
.donate-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(135deg, rgba(232, 145, 74, 0.1) 0%, rgba(192, 57, 43, 0.05) 100%);
  pointer-events: none;
  z-index: 0;
}

/* close */
.dm-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  color: var(--text3);
  transition: all 0.3s;
  z-index: 5;
}

.dm-close:hover {
  background: var(--accent);
  color: var(--white);
  transform: rotate(90deg);
}

.dm-content-wrap {
  position: relative;
  z-index: 2;
}

.dm-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 1.5px solid rgba(232, 145, 74, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--warm);
  box-shadow: 0 12px 24px rgba(232, 145, 74, 0.15);
}

.dm-content-wrap h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.dm-content-wrap p {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 32px;
  padding: 0 10px;
}

.dm-selected-display {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1;
}

.dm-amounts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.dm-amt {
  flex: 1 1 calc(33.333% - 12px);
  min-width: 90px;
  background: var(--bg);
  border: 1.5px solid transparent;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 16px 12px;
  cursor: pointer;
  color: var(--text2);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dm-amt:hover {
  background: var(--white);
  border-color: rgba(232, 145, 74, 0.5);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.dm-amt.active {
  background: var(--white);
  border-color: var(--warm);
  color: var(--warm);
  box-shadow: 0 10px 24px rgba(232, 145, 74, 0.15);
}

.dm-other {
  flex: 1 1 100%;
  border: 1.5px solid var(--border);
  background: var(--bg);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px;
  text-align: center;
  color: var(--dark);
  outline: none;
  transition: all 0.3s;
  -moz-appearance: textfield;
  appearance: textfield;
}

.dm-other::-webkit-outer-spin-button,
.dm-other::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.dm-other:focus {
  background: var(--white);
  border-color: var(--warm);
  box-shadow: 0 4px 16px rgba(232, 145, 74, 0.1);
}

.dm-donate-btn {
  width: 100%;
  padding: 20px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(192, 57, 43, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dm-donate-btn:hover {
  background: #a93226;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(192, 57, 43, 0.4);
}

.dm-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text3);
}

.dm-notice svg {
  color: var(--teal);
}

@media (max-width: 600px) {
  .donate-modal {
    padding: 32px 24px;
  }

  .dm-amt {
    flex: 1 1 calc(50% - 12px);
  }
}