:root {
  --jamaica-green: #009b3a;
  --jamaica-gold: #fcd116;
  --jamaica-black: #000000;
  --bg-light: #fafafa;
  --text-main: #111111;
  --text-muted: #555555;
  --max-width: 1100px;
  --radius: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HERO */

header.hero {
  background: linear-gradient(135deg, #000000 0%, #111111 60%, #222222 100%);
  color: #ffffff;
  padding: 3rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

header.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(252, 209, 22, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(0, 155, 58, 0.18), transparent 55%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 840px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-tag .flag {
  width: 14px;
  height: 10px;
  background: conic-gradient(
    from 45deg,
    #000000 0 25%,
    #009b3a 25% 50%,
    #fcd116 50% 75%,
    #000000 75% 100%
  );
  border-radius: 2px;
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 1rem 0 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-title .highlight {
  color: var(--jamaica-gold);
}

.hero-sub {
  font-size: 0.98rem;
  color: #dddddd;
  max-width: 32rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.4rem 0 1.8rem;
  font-size: 0.8rem;
}

.hero-badge {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.16s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--jamaica-gold);
  color: #111111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-note {
  font-size: 0.8rem;
  color: #bbbbbb;
}

.hero-media {
  position: relative;
}

.hero-card {
  background: rgba(10, 10, 10, 0.85);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.3rem;
  backdrop-filter: blur(10px);
  color: #ffffff;
}

.hero-card-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: var(--jamaica-gold);
}

.hero-card-body {
  font-size: 0.82rem;
  color: #dddddd;
}

.hero-card-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.hero-card-stat {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
}

/* MAIN LAYOUT */

main {
  flex: 1;
  padding: 3rem 1.5rem 3.5rem;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto 3rem;
}

.section-header {
  margin-bottom: 1.6rem;
}

.section-kicker {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--jamaica-green);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.section-title {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.section-body {
  font-size: 0.94rem;
  color: var(--text-muted);
  max-width: 48rem;
}

/* GRID & CARDS */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid #e4e4e4;
  padding: 1.1rem 1.1rem 1.2rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.03);
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* PHASE TAGS */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: #f3f7f4;
  color: var(--jamaica-black);
  margin-bottom: 0.4rem;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--jamaica-green);
}

/* DONATION BLOCK */

.donation-block {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .donation-block {
    grid-template-columns: 1fr;
  }
}

.donation-box {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid #e4e4e4;
  padding: 1.2rem 1.2rem 1.3rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.donation-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.donation-value {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  word-break: break-all;
}

.donation-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* STATS & IMPACT */

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.stat-chip {
  flex: 1 1 150px;
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  background: #f6f6f6;
  font-size: 0.82rem;
}

.stat-label {
  color: #777777;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.15rem;
}

.stat-value {
  font-weight: 700;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

@media (max-width: 900px) {
  .impact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.impact-tile {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e2e2;
  padding: 0.7rem 0.8rem;
  font-size: 0.8rem;
}

.impact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #777777;
  margin-bottom: 0.15rem;
}

.impact-value {
  font-weight: 700;
  font-size: 0.96rem;
}

/* VIDEO EMBED */

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-note {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.7rem;
}

/* MEDIA & PRESS */

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.6rem;
}

.media-grid-3{
  width: 100%;
  max-width: 100%;
  grid-template-columns: minmax(0, 3fr) minmax(0, 3fr);
}

@media (max-width: 100%) {
  .media-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 100%) {
  .media-grid-3 {
    grid-template-columns: 1fr;

  }
}

.media-card {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid #e4e4e4;
  padding: 1rem 1.1rem 1.2rem;
  font-size: 0.88rem;
  color: var(--text-muted);

}

.media-card-3{
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid #e4e4e4;
  padding: 1rem 1.1rem 1.2rem;
  font-size: 0.88rem;
  color: var(--text-muted);

}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
  font-size: 0.78rem;
}

.badge {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #f2f2f2;
}

/* FOOTER */

.site-footer {
  background: #000000;
  color: #e0e0e0;
  padding: 1.6rem 1.5rem;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  justify-content: space-between;
  font-size: 0.8rem;
}

.footer-hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
}

.footer-hashtags span {
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}
