:root {
  --navy: #061b3a;
  --navy-2: #0b2d5b;
  --navy-3: #0f3d77;
  --red: #c5162e;
  --red-dark: #9e1024;
  --gray: #f3f6f9;
  --gray-2: #e4eaf1;
  --ink: #17213a;
  --muted: #627084;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(6, 27, 58, 0.14);
  --shadow-soft: 0 12px 28px rgba(6, 27, 58, 0.1);
  --image-shadow: 0 22px 54px rgba(6, 27, 58, 0.18);
  --image-shadow-hover: 0 32px 72px rgba(6, 27, 58, 0.24);
  --radius: 8px;
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Roboto", Arial, sans-serif;
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: var(--navy-2);
  text-decoration: none;
}

a:hover {
  color: var(--red);
}

.section-padding {
  padding: 96px 0;
}

.section-padding-sm {
  padding: 70px 0;
}

.section-band {
  background: var(--gray);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 27, 58, 0.98), rgba(11, 45, 91, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 24px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--red);
}

.section-title {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: "Oswald", "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.section-title.text-white {
  color: var(--white) !important;
}

.section-lead {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-dark .section-lead,
.section-dark .text-muted,
.hero-section .text-muted {
  color: rgba(255, 255, 255, 0.78) !important;
}

.text-red {
  color: var(--red);
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 6px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  transition:
    transform 300ms var(--ease-standard),
    box-shadow 300ms var(--ease-standard),
    color 300ms ease,
    background-color 300ms ease,
    border-color 300ms ease;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.btn:hover {
  transform: translate3d(0, -2px, 0) scale(1.025);
}

.btn:active {
  transform: translate3d(0, 0, 0) scale(0.985);
}

.btn-animated::after {
  content: "\f061";
  display: inline-block;
  margin-left: 0.58rem;
  font-family: "Font Awesome 6 Free";
  font-size: 0.86em;
  font-weight: 900;
  line-height: 1;
  opacity: 0.74;
  transform: translate3d(-4px, 0, 0);
  transition: transform 300ms var(--ease-standard), opacity 300ms ease;
}

.btn-animated:hover::after,
.btn-animated:focus-visible::after {
  opacity: 1;
  transform: translate3d(3px, 0, 0);
}

.btn-ripple {
  position: absolute;
  z-index: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.42);
  transform: translate3d(-50%, -50%, 0) scale(0);
  animation: buttonRipple 640ms ease-out forwards;
}

.btn-outline-campaign .btn-ripple {
  background: rgba(197, 22, 46, 0.18);
}

.btn > i,
.btn-animated::after {
  position: relative;
  z-index: 1;
}

.btn-primary-campaign {
  color: var(--white);
  border: 1px solid var(--red);
  background: var(--red);
  box-shadow: 0 12px 24px rgba(197, 22, 46, 0.24);
}

.btn-primary-campaign:hover,
.btn-primary-campaign:focus {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 14px 28px rgba(6, 27, 58, 0.24);
}

.btn-outline-campaign {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-campaign:hover,
.btn-outline-campaign:focus {
  color: var(--navy);
  border-color: var(--white);
  background: var(--white);
}

.btn-navy {
  color: var(--white);
  border: 1px solid var(--navy);
  background: var(--navy);
}

.btn-navy:hover,
.btn-navy:focus {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.btn-donate {
  color: var(--white) !important;
  border: 1px solid var(--red);
  background: var(--red);
  padding: 0.72rem 1.1rem;
}

.btn-donate:hover,
.btn-donate:focus {
  border-color: var(--white);
  background: var(--red-dark);
}

.site-navbar {
  min-height: 82px;
  padding: 14px 0;
  background: transparent;
  transition:
    padding 320ms var(--ease-standard),
    background-color 320ms ease,
    box-shadow 320ms ease,
    backdrop-filter 320ms ease;
  z-index: 1030;
}

.site-navbar.navbar-scrolled,
.site-navbar.mobile-open {
  padding: 10px 0;
  background: rgba(6, 27, 58, 0.96);
  box-shadow: 0 12px 32px rgba(6, 27, 58, 0.22);
  backdrop-filter: blur(14px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white) !important;
  font-family: "Montserrat", sans-serif;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  background: linear-gradient(135deg, var(--red), var(--navy-2));
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.brand-lockup strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand-lockup small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-navbar .nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.82) !important;
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.55rem 0.72rem !important;
  text-transform: uppercase;
  transition: color 260ms ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--white) !important;
}

.site-navbar .nav-link.active::after,
.site-navbar .nav-link:hover::after {
  transform: scaleX(1);
}

.site-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.26rem;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease-standard);
  will-change: transform;
}

.site-navbar .nav-link.active::after {
  animation: navIndicator 680ms var(--ease-premium) both;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.55);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(255, 255, 255, 0.24);
}

.hero-section {
  position: relative;
  min-height: 88vh;
  padding: 132px 0 58px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(6, 27, 58, 0.98) 0%, rgba(8, 39, 82, 0.95) 48%, rgba(197, 22, 46, 0.88) 120%),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.18), transparent 30%);
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 9%, transparent 9% 15%, rgba(255, 255, 255, 0.06) 15% 24%, transparent 24%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.055) 0 2px, transparent 2px 46px);
  opacity: 0.72;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -24vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.hero-content,
.hero-media,
.inner-hero .container,
.section-dark .container {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 42px;
  height: 3px;
  background: var(--red);
}

.hero-title {
  margin: 0;
  color: var(--white);
  font-family: "Oswald", "Montserrat", sans-serif;
  font-size: clamp(3.3rem, 8vw, 7.1rem);
  font-weight: 700;
  line-height: 0.93;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  font-weight: 800;
}

.hero-tagline {
  margin: 10px 0 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-media {
  position: relative;
  max-width: 465px;
  margin-left: auto;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 7% -8% -5% 8%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.28), transparent 38%),
    radial-gradient(circle at 62% 60%, rgba(197, 22, 46, 0.28), transparent 48%);
  filter: blur(18px);
  opacity: 0.9;
  transform: translate3d(0, 0, 0);
}

.portrait-frame {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.1);
  box-shadow:
    0 30px 74px rgba(0, 0, 0, 0.24),
    0 0 64px rgba(255, 255, 255, 0.13);
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 20px;
  bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  z-index: 1;
  pointer-events: none;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(0deg, rgba(6, 27, 58, 0.2), transparent 46%);
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: clamp(520px, 64vh, 680px);
  object-fit: contain;
  object-position: center center;
  background: linear-gradient(135deg, rgba(6, 27, 58, 0.82), rgba(197, 22, 46, 0.18));
  transition: transform 420ms var(--ease-standard), filter 420ms ease;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: transform;
}

.portrait-frame:hover img {
  filter: saturate(1.04) contrast(1.03);
  transform: translate3d(0, 0, 0) scale(1.025);
}

.hero-badge {
  position: absolute;
  left: -28px;
  bottom: 32px;
  z-index: 2;
  max-width: 265px;
  padding: 18px 20px;
  color: var(--navy);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-badge strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.hero-badge span {
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-page .hero-kicker,
.home-page .hero-title,
.home-page .hero-subtitle,
.home-page .hero-tagline,
.home-page .hero-actions .btn {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  animation: revealUp 760ms var(--ease-premium) forwards;
}

.home-page .hero-kicker {
  animation-delay: 120ms;
}

.home-page .hero-title {
  animation-delay: 240ms;
}

.home-page .hero-subtitle {
  animation-delay: 380ms;
}

.home-page .hero-tagline {
  animation-delay: 500ms;
}

.home-page .hero-actions .btn:nth-child(1) {
  animation-delay: 650ms;
}

.home-page .hero-actions .btn:nth-child(2) {
  animation-delay: 790ms;
}

.home-page .hero-media {
  animation: heroFloat 6.5s ease-in-out 1.35s infinite;
  will-change: transform;
}

.home-page .portrait-frame {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.965);
  animation: heroMediaReveal 900ms var(--ease-premium) 420ms forwards;
  will-change: transform, opacity;
}

.home-page .portrait-frame img {
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1);
  animation: heroImageSettle 1200ms var(--ease-premium) 520ms forwards;
}

.home-page .hero-kicker.is-revealed,
.home-page .hero-title.is-revealed,
.home-page .hero-subtitle.is-revealed,
.home-page .hero-tagline.is-revealed,
.home-page .hero-actions .btn.is-revealed {
  opacity: 1;
  animation: none;
  transform: translate3d(0, 0, 0);
}

.home-page .hero-actions .btn.is-revealed:hover,
.home-page .hero-actions .btn.is-revealed:focus-visible {
  transform: translate3d(0, -2px, 0) scale(1.025);
}

.home-page .hero-actions .btn.is-revealed:active {
  transform: translate3d(0, 0, 0) scale(0.985);
}

.home-page .portrait-frame.is-revealed {
  opacity: 1;
  animation: none;
  transform: translate3d(0, 0, 0) scale(1);
}

.home-page .portrait-frame img.is-revealed {
  opacity: 1;
  animation: none;
  transform: translate3d(0, 0, 0) scale(1);
}

.home-page .portrait-frame:hover img.is-revealed {
  transform: translate3d(0, 0, 0) scale(1.05);
}

.trust-strip {
  padding: 20px 0;
  color: var(--white);
  background: var(--navy);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.trust-item i {
  color: var(--red);
}

.feature-card,
.platform-card,
.news-card,
.donation-card,
.contact-panel,
.gallery-card,
.value-card {
  height: 100%;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 0 0 rgba(6, 27, 58, 0);
  transition:
    transform 300ms var(--ease-standard),
    box-shadow 300ms ease,
    border-color 300ms ease,
    background-color 300ms ease;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.feature-card:hover,
.platform-card:hover,
.news-card:hover,
.donation-card:hover,
.contact-panel:hover,
.gallery-card:hover,
.value-card:hover {
  transform: translate3d(0, -8px, 0);
  border-color: rgba(197, 22, 46, 0.28);
  box-shadow: 0 22px 44px rgba(6, 27, 58, 0.14);
}

[data-aos].feature-card.aos-animate:hover,
[data-aos].platform-card.aos-animate:hover,
[data-aos].news-card.aos-animate:hover,
[data-aos].donation-card.aos-animate:hover,
[data-aos].contact-panel.aos-animate:hover,
[data-aos].gallery-card.aos-animate:hover,
[data-aos].value-card.aos-animate:hover {
  transform: translate3d(0, -8px, 0);
}

.feature-card,
.value-card {
  padding: 28px;
}

.icon-box {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--white);
  border-radius: 6px;
  background: linear-gradient(135deg, var(--navy), var(--red));
  font-size: 1.35rem;
}

.feature-card h3,
.value-card h3,
.platform-card h3,
.news-card h3,
.contact-panel h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
}

.image-panel {
  position: relative;
  min-height: 430px;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(243, 246, 249, 0.82)),
    var(--gray);
  box-shadow:
    var(--image-shadow),
    -16px 16px 0 rgba(197, 22, 46, 0.08),
    16px -16px 0 rgba(6, 27, 58, 0.08);
  overflow: hidden;
  isolation: isolate;
  transform: translate3d(0, 0, 0);
  transition: box-shadow 420ms var(--ease-standard), transform 420ms var(--ease-standard);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(0deg, rgba(6, 27, 58, 0.34), transparent 52%);
  opacity: 0.88;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.image-panel:hover,
.image-panel:focus-within {
  box-shadow:
    var(--image-shadow-hover),
    -16px 16px 0 rgba(197, 22, 46, 0.12),
    16px -16px 0 rgba(6, 27, 58, 0.12);
  transform: translate3d(0, -4px, 0);
}

.image-panel:hover::after,
.image-panel:focus-within::after {
  opacity: 1;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 18px;
  transition: transform 420ms var(--ease-standard), filter 420ms ease;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: transform;
}

.image-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: inherit;
  place-items: center;
  padding: 28px;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(243, 246, 249, 0.9)),
    repeating-linear-gradient(45deg, rgba(6, 27, 58, 0.08) 0 1px, transparent 1px 18px);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.portrait-frame .image-placeholder {
  min-height: clamp(520px, 64vh, 680px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 27, 58, 0.82), rgba(197, 22, 46, 0.18)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 20px);
}

.featured-article .image-placeholder,
.news-card .image-placeholder,
.gallery-card .image-placeholder {
  min-height: 280px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(243, 246, 249, 0.92)),
    repeating-linear-gradient(45deg, rgba(6, 27, 58, 0.08) 0 1px, transparent 1px 18px);
}

.gallery-card .image-placeholder {
  min-height: 420px;
}

.featured-article .image-placeholder {
  min-height: 500px;
}

.image-panel:hover img,
.image-panel:focus-within img {
  filter: saturate(1.05) contrast(1.03);
  transform: translate3d(0, 0, 0) scale(1.035);
}

.image-panel--portrait {
  aspect-ratio: 4 / 5;
}

.image-panel--portrait::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(0deg, rgba(6, 27, 58, 0.16), transparent 48%);
  opacity: 0.62;
}

.image-panel--portrait img {
  object-position: center center;
}

.image-panel--feature {
  aspect-ratio: 1.08 / 1;
}

.image-panel--feature img {
  object-position: center center;
}

.image-panel-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 18px;
  color: var(--white);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: rgba(6, 27, 58, 0.86);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 34px rgba(6, 27, 58, 0.18);
  transform: translate3d(0, 0, 0);
  transition: transform 420ms var(--ease-standard), background-color 420ms ease;
}

.image-panel:hover .image-panel-caption,
.image-panel:focus-within .image-panel-caption {
  background: rgba(6, 27, 58, 0.92);
  transform: translate3d(0, -4px, 0);
}

.cta-panel {
  position: relative;
  padding: 44px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 27, 58, 0.96), rgba(197, 22, 46, 0.9)),
    url("../images/newspaper mock up.jpeg") center 18% / cover;
  box-shadow: var(--image-shadow);
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 27, 58, 0.58);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.inner-hero {
  position: relative;
  padding: 142px 0 70px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(6, 27, 58, 0.98), rgba(11, 45, 91, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 36px);
  overflow: hidden;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 56%, rgba(197, 22, 46, 0.32) 56% 68%, transparent 68%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05), transparent);
}

.inner-hero h1 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
}

.inner-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.breadcrumb-line {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumb-line a {
  color: var(--white);
}

.mission-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.mission-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--muted);
}

.mission-list i {
  margin-top: 5px;
  color: var(--red);
}

.pullquote {
  padding: 28px;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow-soft);
}

.pullquote p {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.18;
  text-transform: uppercase;
}

.platform-card {
  padding: 30px;
}

.platform-card p,
.feature-card p,
.value-card p,
.news-card p,
.contact-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.platform-card .icon-box {
  background: var(--navy);
}

.platform-card:hover .icon-box {
  background: var(--red);
}

.newspaper-wrap {
  border-top: 6px solid var(--navy);
  border-bottom: 6px solid var(--navy);
  background: var(--white);
}

.newspaper-masthead {
  padding: 30px 0 24px;
  text-align: center;
  border-bottom: 1px solid var(--gray-2);
}

.newspaper-masthead h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.newspaper-masthead span {
  display: inline-block;
  margin-top: 10px;
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-article {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 38px;
  padding: 42px 0;
}

.featured-article img {
  width: 100%;
  min-height: 500px;
  max-height: 640px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: contain;
  object-position: center center;
  padding: 18px;
  background: var(--gray);
  box-shadow: var(--image-shadow);
  transition: transform 420ms var(--ease-standard), box-shadow 300ms ease, filter 300ms ease;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: transform;
}

.featured-article img:hover {
  filter: saturate(1.04) contrast(1.02);
  transform: translate3d(0, -4px, 0) scale(1.025);
  box-shadow: var(--image-shadow-hover);
}

.article-kicker {
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-title {
  margin: 12px 0 18px;
  color: var(--navy);
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
}

.article-meta {
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-card {
  position: relative;
  overflow: hidden;
}

.news-card img {
  width: 100%;
  height: 280px;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center center;
  padding: 14px;
  background: var(--gray);
  transition: transform 420ms var(--ease-standard), filter 300ms ease;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: transform;
}

.news-card:hover img {
  filter: saturate(1.05) contrast(1.02);
  transform: translate3d(0, 0, 0) scale(1.035);
}

.news-card-body {
  padding: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 6px;
}

.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(228, 234, 241, 0.9);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--image-shadow);
  isolation: isolate;
  transform: translate3d(0, 0, 0);
  transition:
    transform 420ms var(--ease-standard),
    box-shadow 420ms var(--ease-standard),
    border-color 420ms ease;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 27, 58, 0.04), transparent 42%),
    linear-gradient(0deg, rgba(6, 27, 58, 0.84), rgba(6, 27, 58, 0.12) 48%, transparent 72%);
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.gallery-card::after {
  content: "\f00e";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(6, 27, 58, 0.62);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  opacity: 0;
  transform: translate3d(0, -8px, 0) scale(0.94);
  transition:
    opacity 360ms ease,
    transform 420ms var(--ease-standard),
    background-color 360ms ease;
  pointer-events: none;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  border-color: rgba(197, 22, 46, 0.34);
  box-shadow: var(--image-shadow-hover);
  outline: 0;
  transform: translate3d(0, -8px, 0);
}

.gallery-card:hover::before,
.gallery-card:focus-visible::before {
  opacity: 1;
}

.gallery-card:hover::after,
.gallery-card:focus-visible::after {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  background: rgba(197, 22, 46, 0.9);
}

.gallery-card img {
  width: 100%;
  height: 420px;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center center;
  padding: 14px;
  background: var(--gray);
  transition: transform 420ms var(--ease-standard), filter 300ms ease;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: transform;
}

.gallery-card--tall img,
.gallery-card--poster img {
  aspect-ratio: 4 / 5;
}

.gallery-card--feature img {
  aspect-ratio: 4 / 5;
}

.gallery-card--wide img {
  aspect-ratio: 4 / 5;
}

.gallery-card--medium img {
  aspect-ratio: 4 / 5;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  filter: saturate(1.05) contrast(1.02);
  transform: translate3d(0, 0, 0) scale(1.035);
}

.gallery-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 12px 14px;
  color: var(--white);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  background: rgba(6, 27, 58, 0.86);
  box-shadow: 0 14px 28px rgba(6, 27, 58, 0.22);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  opacity: 0.94;
  transform: translate3d(0, 8px, 0);
  transition: opacity 360ms ease, transform 420ms var(--ease-standard), background-color 360ms ease;
}

.gallery-card:hover figcaption,
.gallery-card:focus-visible figcaption {
  opacity: 1;
  background: rgba(6, 27, 58, 0.94);
  transform: translate3d(0, 0, 0);
}

.lightbox-modal .modal-content {
  border: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(6, 27, 58, 0.98), rgba(11, 45, 91, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.lightbox-modal img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--navy);
}

.donation-card {
  display: flex;
  width: 100%;
  min-height: 160px;
  padding: 26px;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.donation-card:hover {
  color: var(--ink);
}

.donation-amount {
  color: var(--navy);
  font-family: "Oswald", sans-serif;
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1;
}

.donation-card.active,
.donation-card:focus-within {
  border-color: var(--red);
  box-shadow: var(--shadow-soft);
}

.custom-amount {
  height: 48px;
  border: 1px solid var(--gray-2);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--navy);
  font-weight: 800;
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms var(--ease-standard);
}

.custom-amount:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 0.18rem rgba(197, 22, 46, 0.12);
  outline: 0;
  transform: translate3d(0, -1px, 0);
}

.donate-hero-card {
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(6, 27, 58, 0.78), rgba(6, 27, 58, 0.78)),
    url("../images/mishy.jpeg") center 18% / cover;
  box-shadow: var(--image-shadow);
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: transform 420ms var(--ease-standard), box-shadow 420ms var(--ease-standard);
}

.donate-hero-card:hover {
  box-shadow: var(--image-shadow-hover);
  transform: translate3d(0, -4px, 0);
}

.form-control,
.form-select {
  min-height: 52px;
  border: 1px solid var(--gray-2);
  border-radius: 6px;
  color: var(--navy);
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms var(--ease-standard);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 0.18rem rgba(197, 22, 46, 0.12);
  transform: translate3d(0, -1px, 0);
}

textarea.form-control {
  min-height: 130px;
}

.form-note {
  display: none;
  margin-top: 14px;
  color: var(--navy);
  font-weight: 800;
}

.form-note.is-visible {
  display: block;
}

.contact-panel {
  padding: 30px;
}

.map-placeholder {
  display: grid;
  min-height: 360px;
  place-items: center;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 27, 58, 0.94), rgba(11, 45, 91, 0.88)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 18px);
}

.map-placeholder i {
  color: var(--red);
  font-size: 2.5rem;
}

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

.social-list a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 300ms var(--ease-standard), border-color 300ms ease, background-color 300ms ease;
  transform: translate3d(0, 0, 0);
}

.social-list a:hover {
  border-color: var(--red);
  background: var(--red);
  transform: translate3d(0, -2px, 0);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.footer-main {
  padding: 58px 0 36px;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.paid-for {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 2000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--red);
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 12px;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroMediaReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.965);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroImageSettle {
  from {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes buttonRipple {
  to {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(26);
  }
}

@keyframes navIndicator {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  [data-aos],
  .home-page .hero-kicker,
  .home-page .hero-title,
  .home-page .hero-subtitle,
  .home-page .hero-tagline,
  .home-page .hero-actions .btn,
  .home-page .portrait-frame,
  .home-page .portrait-frame img {
    opacity: 1 !important;
    transform: none !important;
  }
}
