﻿:root {
  --navy: #0b2545;
  --navy-deep: #001220;
  --orange: #d97706;
  --orange-deep: #b45309;
  --text: #1f2937;
  --muted: #5f6f7f;
  --paper: #fffdf8;
  --white: #ffffff;
  --shadow: 0 22px 48px rgba(7, 22, 39, 0.14);
  --shadow-soft: 0 14px 34px rgba(7, 22, 39, 0.1);
  --border: rgba(11, 37, 69, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 119, 6, 0.12), transparent 18%),
    radial-gradient(circle at bottom right, rgba(11, 37, 69, 0.08), transparent 16%),
    linear-gradient(180deg, #fffdf8 0%, #fcfbf7 100%);
  line-height: 1.6;
  overflow-x: hidden;
  min-width: 0;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 1.5rem, 1120px);
  margin: 0 auto;
  box-sizing: border-box;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.15);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #f59e0b);
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-deep), #c67c05);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(11, 37, 69, 0.2);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-dark {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
}

.promo-bar {
  background: linear-gradient(90deg, #001220 0%, #0b2545 100%);
  color: var(--white);
  font-size: 0.92rem;
}

.promo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}

.promo-row p {
  margin: 0;
}

.promo-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.88);
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.social-links a:hover {
  color: var(--orange);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.promo-email {
  color: rgba(255, 255, 255, 0.95);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 248, 0.98);
  border-bottom: 1px solid rgba(11, 37, 69, 0.08);
  backdrop-filter: blur(8px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--orange);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.brand-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(11, 37, 69, 0.08);
  color: var(--navy);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 700;
  color: #334155;
}

.site-nav a:hover {
  color: var(--orange);
}

.desktop-only {
  display: inline-flex;
}

.mobile-only {
  display: none;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
}

.hero {
  padding: 3.5rem 0 2.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--orange);
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.78rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 2vw + 1.6rem, 3rem);
  line-height: 1.06;
  color: var(--navy);
}

.hero-text {
  max-width: 40rem;
  margin: 1rem 0 1.5rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-visual {
  min-height: 26rem;
  padding: 1rem;
  border-radius: 1.75rem;
  background:
    linear-gradient(rgba(11, 37, 69, 0.14), rgba(11, 37, 69, 0.14)),
    url('https://images.unsplash.com/photo-1573164713988-8665fc963095?auto=format&fit=crop&w=1200&q=80') center/cover;
  display: flex;
  align-items: end;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-card {
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(11, 37, 69, 0.06);
}

.hero-card p,
.hero-card strong {
  margin: 0;
  display: block;
}

.hero-card p {
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.stats-strip {
  background: linear-gradient(90deg, #0b2545 0%, #03203a 100%);
  color: var(--white);
  padding: 1.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stats-grid article {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.35rem 0;
}

.stats-grid i {
  color: var(--orange);
  font-size: 1.5rem;
}

.stats-grid h2 {
  margin: 0;
  font-size: 1.1rem;
}

.stats-grid p {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.photos-section {
  background: linear-gradient(180deg, rgba(11, 37, 69, 0.03), transparent 65%);
}

.photo-layout {
  align-items: center;
}

.photo-card {
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 37, 69, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.photo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 50px rgba(7, 22, 39, 0.16);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.photo-caption {
  padding: 1rem 1.1rem 1.2rem;
}

.photo-caption h3 {
  margin: 0.35rem 0;
  color: var(--navy);
}

.photo-caption p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.section {
  padding: 4.5rem 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.section-intro h2,
.section-heading h2,
.impact-banner h2 {
  margin: 0;
  font-size: clamp(1.8rem, 1.4vw + 1rem, 2.4rem);
  color: var(--navy);
}

.section-intro p:last-of-type,
.section-heading p,
.impact-banner p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.info-card {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 1.15rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(11, 37, 69, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.info-card h3 {
  margin: 0.9rem 0 0.5rem;
  color: var(--navy);
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.icon-box {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
}

.orange { background: #e67e22; }
.blue { background: #2980b9; }
.green { background: #27ae60; }
.navy { background: #2c3e50; }

.impact-banner {
  background: linear-gradient(rgba(0, 18, 32, 0.9), rgba(0, 18, 32, 0.88)), url('https://images.unsplash.com/photo-1511632765486-a01980e01a18?auto=format&fit=crop&w=1200&q=80') center/cover fixed;
  color: var(--white);
  padding: 4.5rem 0;
}

.impact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.impact-banner .eyebrow,
.impact-banner h2,
.impact-banner p {
  color: var(--white);
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.impact-metrics article {
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  text-align: center;
}

.impact-metrics i {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.impact-metrics strong {
  display: block;
  font-size: 1.5rem;
}

.impact-metrics span {
  color: rgba(255, 255, 255, 0.9);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.campaign-card {
  min-height: 20rem;
  border-radius: 1.3rem;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.campaign-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 55px rgba(7, 22, 39, 0.18);
}

.campaign-card p,
.campaign-card h3 {
  margin: 0;
}

.campaign-card h3 {
  margin: 0.35rem 0;
  font-size: 1.3rem;
}

.campaign-card .tag {
  color: #f8d59b;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.campaign-one { background-image: linear-gradient(rgba(0,0,0,0.33), rgba(0,0,0,0.78)), url('https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=900&q=80'); }
.campaign-two { background-image: linear-gradient(rgba(0,0,0,0.33), rgba(0,0,0,0.78)), url('https://images.unsplash.com/photo-1593113598332-cd288d649433?auto=format&fit=crop&w=900&q=80'); }
.campaign-three { background-image: linear-gradient(rgba(0,0,0,0.33), rgba(0,0,0,0.78)), url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=900&q=80'); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.news-card {
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(11, 37, 69, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.news-card img {
  height: 11rem;
  width: 100%;
  object-fit: cover;
}

.news-body {
  padding: 1rem;
}

.news-body h3 {
  margin: 0.35rem 0;
  color: var(--navy);
}

.news-body p {
  color: var(--muted);
}

.date {
  margin: 0;
  color: var(--orange);
  font-weight: 800;
}

.text-link {
  color: var(--orange);
  font-weight: 800;
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.84);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr 0.9fr 1.1fr;
  gap: 1.5rem;
  padding-bottom: 2rem;
}

.footer-grid h3 {
  color: var(--white);
  margin-top: 0;
}

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

.footer-grid li {
  margin-bottom: 0.75rem;
}

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

.footer-copy {
  max-width: 28rem;
}

.footer-social {
  margin-top: 1rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(11, 37, 69, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
}

.newsletter-form input:focus {
  outline: 2px solid rgba(217, 119, 6, 0.25);
  border-color: rgba(217, 119, 6, 0.35);
}

.status-message {
  min-height: 1.5rem;
  margin-bottom: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  font-size: 0.92rem;
}

.footer-bottom-row a {
  margin-left: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .impact-layout,
  .campaign-grid,
  .news-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading,
  .promo-row {
    display: block;
  }

  .section-heading {
    margin-bottom: 1.25rem;
  }

  .site-nav {
    position: fixed;
    inset: 4.2rem 1rem auto 1rem;
    padding: 1rem;
    background: rgba(255, 253, 248, 0.98);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .site-nav.open {
    display: flex;
  }

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

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
    width: 100%;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-visual {
    min-height: 18rem;
  }
}

@media (max-width: 640px) {
  .promo-row {
    padding: 1rem 0;
  }

  .container {
    width: min(100% - 1rem, 1120px);
  }

  .stats-grid,
  .card-grid,
  .impact-metrics {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .button-row,
  .newsletter-form {
    flex-direction: column;
  }

  .btn,
  .newsletter-form input,
  .newsletter-form .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 16rem;
  }

  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
  }
}
