:root {
  --navy: #0b1f38;
  --navy-soft: #153456;
  --bronze: #b07a3a;
  --bronze-deep: #8a5c28;
  --bronze-light: #d4a574;
  --ink: #18202c;
  --muted: #5c6677;
  --line: #e2e7ef;
  --fog: #f2f5f8;
  --fog-2: #e8eef5;
  --white: #ffffff;
  --signal: #1f7a5c;
  --max: 1160px;
  --radius: 6px;
  --shadow: 0 22px 60px rgba(11, 31, 56, 0.1);
  --shadow-soft: 0 10px 28px rgba(11, 31, 56, 0.07);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --header-h: 6.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--bronze-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 0.65em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Progress */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0;
  z-index: 80;
  background: linear-gradient(90deg, var(--bronze), var(--bronze-light));
  pointer-events: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(11, 31, 56, 0.06);
  background: rgba(255, 255, 255, 0.97);
}

.header-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.35rem;
  padding: 0.55rem 0 0;
  font-size: 0.88rem;
}

.header-top a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-top a:hover {
  color: var(--navy);
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: 0.35rem;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--navy);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.icon-btn:hover {
  border-color: var(--bronze);
  transform: translateY(-1px);
}

.icon-btn svg {
  width: 16px;
  height: 16px;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 0 0.95rem;
  transition: padding 0.25s ease;
}

.site-header.is-scrolled .header-main {
  padding: 0.45rem 0 0.65rem;
}

.site-header.is-scrolled .header-top {
  display: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--navy);
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(176, 122, 58, 0.3);
  transition: transform 0.35s ease;
}

.brand:hover img {
  transform: rotate(-6deg) scale(1.04);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.brand-tag {
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-primary a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 650;
  font-size: 0.97rem;
  position: relative;
}

.nav-primary a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-primary a:not(.nav-cta):hover::after,
.nav-primary a[aria-current="page"]:not(.nav-cta)::after {
  transform: scaleX(1);
}

.nav-primary a:hover,
.nav-primary a[aria-current="page"] {
  color: var(--bronze-deep);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--bronze);
  color: white !important;
  padding: 0.58rem 1.05rem;
  border-radius: var(--radius);
  font-weight: 700 !important;
  box-shadow: 0 8px 20px rgba(176, 122, 58, 0.28);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  background: var(--bronze-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(176, 122, 58, 0.34);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.88rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.98rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--bronze);
  color: white;
  box-shadow: 0 10px 24px rgba(176, 122, 58, 0.28);
}

.btn-primary:hover {
  background: var(--bronze-deep);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: white;
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.88);
}

.btn-ghost:hover {
  background: white;
  color: var(--navy);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Trust ribbon */
.trust-ribbon {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-ribbon .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
}

.trust-ribbon strong {
  color: var(--bronze-light);
  font-weight: 700;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(90vh, 820px);
  display: grid;
  align-items: end;
  color: white;
  overflow: hidden;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(11, 31, 56, 0.84) 0%, rgba(11, 31, 56, 0.48) 48%, rgba(11, 31, 56, 0.22) 100%),
    linear-gradient(to top, rgba(11, 31, 56, 0.62), transparent 48%);
}

.hero-signal {
  position: absolute;
  right: 8%;
  top: 18%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(212, 165, 116, 0.35);
  border-radius: 50%;
  pointer-events: none;
  animation: pulseRing 4.5s ease-out infinite;
}

.hero-signal::before,
.hero-signal::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(212, 165, 116, 0.28);
  border-radius: 50%;
}

.hero-signal::after {
  inset: 36%;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 7.5rem 0 4.75rem;
  max-width: 42rem;
  animation: riseIn 0.95s ease both;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.35rem;
}

.hero-brand img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
}

.hero-brand span {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero h1 {
  color: white;
  font-size: clamp(2.2rem, 4.8vw, 3.55rem);
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

.hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.16rem;
  max-width: 35rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.hero-badges span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}

/* Welcome */
.welcome {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: var(--white);
}

.welcome-visual {
  min-height: 460px;
  background: var(--fog);
  overflow: hidden;
  position: relative;
}

.welcome-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.welcome:hover .welcome-visual img {
  transform: scale(1.04);
}

.welcome-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.2rem, 5vw, 4.2rem);
  background:
    linear-gradient(180deg, rgba(242, 245, 248, 0.55), transparent 40%),
    var(--white);
}

.welcome-copy h2 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
}

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.75rem;
}

/* Spotlight band (CharityComms-style featured block) */
.spotlight {
  background: linear-gradient(135deg, #f7f1e8 0%, #eef3f8 100%);
  border-block: 1px solid var(--line);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 3.5rem 0;
}

.spotlight-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* Sections */
.section {
  padding: 4.75rem 0;
}

.section-fog {
  background: var(--fog);
}

.section-navy {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(176, 122, 58, 0.18), transparent 45%),
    linear-gradient(145deg, var(--navy), var(--navy-soft));
  color: white;
}

.section-navy h2,
.section-navy h3 {
  color: white;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2.35rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.section-head p {
  color: var(--muted);
}

.section-navy .section-head p {
  color: rgba(255, 255, 255, 0.82);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.step {
  background: white;
  border: 1px solid var(--line);
  border-top: 3px solid var(--bronze);
  padding: 1.4rem 1.3rem 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--bronze);
  margin-bottom: 0.7rem;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.step p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

/* Feature strips */
.feature-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.feature-strip.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.feature-strip.reverse .feature-copy {
  order: 2;
}

.feature-strip img {
  width: 100%;
  height: min(430px, 55vw);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.feature-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

/* Mosaic */
.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 210px 210px;
  gap: 0.85rem;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.mosaic img:first-child {
  grid-row: 1 / span 2;
}

/* Themes row */
.themes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.theme-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 160px;
  padding: 1.15rem;
  text-decoration: none;
  color: white;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.theme-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 56, 0.88), rgba(11, 31, 56, 0.25));
  transition: background 0.25s ease;
}

.theme-link:hover {
  transform: translateY(-3px);
  color: white;
}

.theme-link:hover::before {
  background: linear-gradient(to top, rgba(11, 31, 56, 0.92), rgba(176, 122, 58, 0.35));
}

.theme-link span {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.news-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  color: inherit;
}

.news-item-media {
  overflow: hidden;
  height: 190px;
}

.news-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.news-item:hover img {
  transform: scale(1.06);
}

.news-item-body {
  padding: 1.25rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.news-item h3 {
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
}

.news-item p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 0;
}

.read-more {
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 700;
  color: var(--bronze-deep);
  font-size: 0.92rem;
}

/* Impact */
.impact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.impact-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: var(--bronze-light);
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.impact-item span {
  color: rgba(255, 255, 255, 0.85);
}

/* Leadership */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

.leader-card {
  border-top: 3px solid var(--bronze);
  background: white;
  padding: 1.55rem 1.45rem 1.65rem;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.leader-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.leader-card h3 {
  margin-bottom: 0.2rem;
  font-size: 1.25rem;
}

.leader-role {
  color: var(--bronze-deep);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
}

.leader-card p {
  color: var(--muted);
  margin-bottom: 0;
}

/* Page hero */
.page-hero {
  background:
    linear-gradient(120deg, rgba(11, 31, 56, 0.9), rgba(11, 31, 56, 0.62)),
    url("../assets/images/volunteer-field.jpg") center/cover;
  color: white;
  padding: 5.8rem 0 3.7rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(212, 165, 116, 0.25);
  border-radius: 50%;
}

.page-hero.programs {
  background:
    linear-gradient(120deg, rgba(11, 31, 56, 0.9), rgba(11, 31, 56, 0.6)),
    url("../assets/images/radio-ops.jpg") center/cover;
}

.page-hero.leadership {
  background:
    linear-gradient(120deg, rgba(11, 31, 56, 0.9), rgba(11, 31, 56, 0.6)),
    url("../assets/images/news-training.jpg") center/cover;
}

.page-hero.news {
  background:
    linear-gradient(120deg, rgba(11, 31, 56, 0.9), rgba(11, 31, 56, 0.6)),
    url("../assets/images/community-event.jpg") center/cover;
}

.page-hero.donate {
  background:
    linear-gradient(120deg, rgba(11, 31, 56, 0.9), rgba(11, 31, 56, 0.6)),
    url("../assets/images/disaster-prep.jpg") center/cover;
}

.page-hero.contact {
  background:
    linear-gradient(120deg, rgba(11, 31, 56, 0.9), rgba(11, 31, 56, 0.6)),
    url("../assets/images/about-mission.jpg") center/cover;
}

.page-hero.events {
  background:
    linear-gradient(120deg, rgba(11, 31, 56, 0.9), rgba(11, 31, 56, 0.6)),
    url("../assets/images/spotlight.jpg") center/cover;
}

.page-hero h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 38rem;
  font-size: 1.12rem;
  margin: 0;
}

/* Article */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 0.35fr;
  gap: 2.5rem;
  align-items: start;
}

.article-body {
  max-width: 46rem;
}

.article-body h2 {
  font-size: 1.45rem;
  margin-top: 1.75rem;
}

.article-dek {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 42rem;
  margin: -0.2rem 0 1.25rem;
}

.article-prose h2 {
  font-size: 1.35rem;
  margin-top: 1.85rem;
}

.article-prose p {
  max-width: 42rem;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 0 0 1.75rem;
}

.detail-meta-grid div {
  background: var(--fog);
  border-left: 3px solid var(--bronze);
  padding: 0.85rem 0.95rem;
}

.detail-meta-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  margin-bottom: 0.35rem;
}

.detail-meta-grid span {
  color: var(--ink);
  font-size: 0.98rem;
}

.detail-agenda {
  max-width: 42rem;
  padding-left: 1.2rem;
  color: var(--ink);
}

.detail-agenda li {
  margin-bottom: 0.55rem;
}

@media (max-width: 900px) {
  .detail-meta-grid {
    grid-template-columns: 1fr;
  }
}

.aside-box {
  background: var(--fog);
  padding: 1.35rem;
  border-left: 3px solid var(--bronze);
  position: sticky;
  top: 6.5rem;
}

.aside-box h3 {
  font-size: 1.05rem;
}

/* Forms / donate */
.form-grid {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
}

input,
textarea,
select {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border: 1px solid #c9d0db;
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(176, 122, 58, 0.18);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-split,
.donate-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.25rem;
  align-items: start;
}

.donate-panel img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
}

.tax-note {
  background: #f8f1e7;
  border-left: 3px solid var(--bronze);
  padding: 1rem 1.15rem;
  margin: 1.25rem 0;
  color: var(--ink);
}

.amount-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 1.25rem;
}

.amount-chip {
  border: 1.5px solid var(--line);
  background: white;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.amount-chip:hover,
.amount-chip.is-active {
  border-color: var(--bronze);
  background: var(--bronze);
  color: white;
}

.contact-details dt {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  margin-top: 1rem;
}

.contact-details dd {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

/* Events */
.event-list {
  display: grid;
  gap: 1rem;
}

.event-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.event-date {
  font-family: var(--font-display);
  text-align: center;
  color: var(--navy);
  border-right: 1px solid var(--line);
  padding-right: 1rem;
}

.event-date strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}

.event-date span {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-item h3 {
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
}

.event-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Newsletter */
.newsletter {
  background: var(--fog-2);
  border-block: 1px solid var(--line);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: end;
  padding: 2.75rem 0;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(11, 31, 56, 0.55);
  backdrop-filter: blur(6px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 1.25rem 2rem;
}

.search-overlay.is-open {
  display: flex;
}

.search-panel {
  width: min(640px, 100%);
  background: white;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  animation: riseIn 0.35s ease both;
}

.search-panel input {
  width: 100%;
  font-size: 1.15rem;
  padding: 0.95rem 1rem;
}

.search-results {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
}

.search-results li {
  border-top: 1px solid var(--line);
}

.search-results a {
  display: block;
  padding: 0.85rem 0.2rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 650;
}

.search-results a:hover {
  color: var(--bronze-deep);
}

.search-results small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  margin-top: 0.15rem;
}

/* Floating donate */
.float-donate {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 40;
  display: none;
  text-decoration: none;
  background: var(--bronze);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(176, 122, 58, 0.4);
  transition: transform 0.2s ease, background 0.2s ease;
}

.float-donate.is-visible {
  display: inline-flex;
}

.float-donate:hover {
  background: var(--bronze-deep);
  color: white;
  transform: translateY(-2px);
}

/* Footer — elevated */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(176, 122, 58, 0.18), transparent 42%),
    linear-gradient(165deg, #0a1b31 0%, #0f2744 48%, #0b1f38 100%);
  color: rgba(255, 255, 255, 0.82);
  padding: 0 0 1.6rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(212, 165, 116, 0.18);
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: 70px;
  width: 160px;
  height: 160px;
  opacity: 0.08;
  background: center / contain no-repeat url("../assets/logo.png");
  pointer-events: none;
}

.footer-cta-band {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.6rem 0;
  margin-bottom: 2.2rem;
}

.footer-cta-band .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-cta-band h3 {
  color: white;
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
}

.footer-cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 34rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.15fr;
  gap: 2rem;
  margin-bottom: 2.1rem;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.footer-brand strong {
  display: block;
  color: white;
  font-family: var(--font-display);
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.footer-badges span {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bronze-light);
  border: 1px solid rgba(212, 165, 116, 0.35);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
}

.site-footer h4 {
  color: white;
  font-size: 0.92rem;
  margin-bottom: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.site-footer .footer-grid a:hover {
  color: var(--bronze-light);
  padding-left: 2px;
}

.footer-contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem 1.05rem;
}

.footer-contact-card a {
  color: var(--bronze-light);
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
  position: relative;
  z-index: 1;
}

.footer-bottom kbd {
  font: inherit;
  opacity: 0.85;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  padding: 0.05rem 0.35rem;
}

.event-status {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  background: #f4ebe0;
  border-radius: 999px;
  padding: 0.18rem 0.45rem;
  vertical-align: middle;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(0.85);
    opacity: 0.75;
  }
  70% {
    transform: scale(1.15);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img,
  .reveal,
  .hero-content,
  .hero-signal,
  .search-panel {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .welcome,
  .feature-strip,
  .feature-strip.reverse,
  .news-grid,
  .impact-row,
  .leader-grid,
  .article-layout,
  .contact-split,
  .donate-panel,
  .footer-grid,
  .spotlight-grid,
  .steps,
  .themes,
  .newsletter-grid,
  .mosaic {
    grid-template-columns: 1fr;
  }

  .footer-cta-band .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .mosaic {
    grid-template-rows: auto;
  }

  .mosaic img:first-child {
    grid-row: auto;
    min-height: 240px;
  }

  .feature-strip.reverse .feature-copy {
    order: 0;
  }

  .event-item {
    grid-template-columns: 90px 1fr;
  }

  .event-item .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-primary {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: white;
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.95rem;
    box-shadow: var(--shadow-soft);
  }

  .nav-primary.is-open {
    display: flex;
  }

  .header-main {
    position: relative;
  }

  .header-top {
    display: none;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding-top: 5.5rem;
  }

  .hero-signal {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand-tag { display: none; }
  .brand-name { font-size: 0.95rem; }
  .container { width: min(100% - 1.4rem, var(--max)); }
  .newsletter-form { grid-template-columns: 1fr; }
  .float-donate { right: 0.75rem; bottom: 0.75rem; }
}
