@font-face {
  font-family: "Questrial";
  src: url("/assets/fonts/questrial.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("/assets/fonts/oswald-medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("/assets/fonts/oswald-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy: #20254d;
  --navy-deep: #151a3a;
  --blue: #2859b5;
  --blue-dark: #075184;
  --cyan: #21b6db;
  --cyan-light: #dff6fb;
  --cream: #f7f4ed;
  --cream-dark: #eee8dc;
  --white: #fff;
  --ink: #172338;
  --muted: #5c6677;
  --line: #d7dee8;
  --gold: #f0b94d;
  --danger: #b6403c;
  --shadow: 0 20px 60px rgba(20, 31, 66, 0.13);
  --shadow-small: 0 8px 24px rgba(20, 31, 66, 0.12);
  --radius: 22px;
  --radius-small: 12px;
  --container: min(1180px, calc(100% - 40px));
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "Questrial", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(circle at 8% 8%, rgba(33, 182, 219, 0.08) 0 2px, transparent 2.5px);
  background-size: 42px 42px;
  content: "";
  pointer-events: none;
}

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

img {
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--blue-dark);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

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

p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.45em;
  color: var(--blue-dark);
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.75rem);
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.35rem);
}

h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.4rem);
}

h4 {
  font-size: 1.35rem;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(72px, 9vw, 128px);
}

.section-tight {
  padding-block: clamp(52px, 7vw, 88px);
}

.section-cream {
  background: var(--cream);
}

.section-navy {
  color: var(--white);
  background: var(--navy);
}

.section-navy h2,
.section-navy h3,
.section-navy a {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

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

.section-navy .eyebrow {
  color: var(--cyan);
}

.section-title {
  max-width: 780px;
  margin-bottom: 24px;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.section-navy .section-intro {
  color: rgba(255, 255, 255, 0.74);
}

.lead {
  color: var(--ink);
  font-size: clamp(1.18rem, 2.15vw, 1.48rem);
  line-height: 1.58;
}

.muted {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.text-link::after {
  font-size: 1.15em;
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 2px solid var(--blue-dark);
  border-radius: 999px;
  color: var(--white);
  background: var(--blue-dark);
  box-shadow: 0 8px 20px rgba(7, 81, 132, 0.18);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  color: var(--navy-deep);
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 12px 30px rgba(33, 182, 219, 0.25);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-outline {
  color: var(--blue-dark);
  background: transparent;
  box-shadow: none;
}

.button-outline:hover {
  color: var(--navy-deep);
}

.button-light {
  color: var(--navy-deep);
  border-color: var(--white);
  background: var(--white);
}

.button-light:hover {
  color: var(--navy-deep);
  border-color: var(--cyan);
  background: var(--cyan);
}

.button-disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.72;
}

.button.button-disabled:hover,
.button.button-disabled:active {
  color: var(--white);
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  box-shadow: 0 8px 20px rgba(7, 81, 132, 0.18);
  transform: none;
}

.button-light.button-disabled,
.button-light.button-disabled:hover,
.button-light.button-disabled:active {
  color: var(--navy-deep);
  border-color: var(--white);
  background: var(--white);
}

.text-link-disabled {
  pointer-events: none;
  color: var(--muted);
  cursor: default;
  opacity: 0.72;
}

.text-link-disabled::after {
  content: none;
}

.inline-link-disabled {
  color: var(--blue-dark);
  font-weight: 700;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.donation-bar {
  color: var(--white);
  background: var(--navy-deep);
  font-size: 0.95rem;
}

.donation-bar-inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.donation-bar-action {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--navy-deep);
  background: var(--cyan);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  cursor: default;
  font-family: var(--display);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}


.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(32, 37, 77, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.brand-row {
  display: flex;
  min-height: 142px;
  align-items: center;
  justify-content: center;
  padding-block: 16px;
}

.brand-mark {
  display: block;
  width: min(460px, 52vw);
}

.brand-mark img {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before {
  position: absolute;
  top: -6px;
}

.menu-toggle-lines::after {
  position: absolute;
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  border-top: 1px solid rgba(32, 37, 77, 0.08);
}

.nav-list {
  display: flex;
  min-height: 60px;
  align-items: stretch;
  justify-content: center;
  gap: clamp(10px, 3.7vw, 52px);
  margin-block: 0;
  margin-inline: auto;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  color: var(--navy);
  font-family: var(--body);
  font-size: 0.94rem;
  text-decoration: none;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-section-active,
.nav-link[aria-current="page"] {
  color: var(--blue-dark);
}

.nav-link:hover::after,
.nav-link.is-section-active::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.submenu-heading {
  display: flex;
  align-items: stretch;
}

.submenu-toggle {
  display: none;
  border: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
}

.submenu-toggle-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 160ms ease;
}

.submenu-toggle[aria-expanded="true"] .submenu-toggle-icon {
  transform: rotate(225deg) translate(-2px, -2px);
}

.submenu {
  position: absolute;
  z-index: 5;
  top: calc(100% - 1px);
  left: 50%;
  display: grid;
  width: 190px;
  gap: 2px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 0 0 14px 14px;
  background: var(--white);
  box-shadow: var(--shadow-small);
  list-style: none;
  opacity: 0;
  transform: translate(-50%, 8px);
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}

.submenu a,
.submenu-disabled {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--navy);
  font-size: 0.92rem;
  text-decoration: none;
}

.submenu-disabled {
  opacity: 0.62;
}

.submenu a:hover,
.submenu a[aria-current="page"] {
  color: var(--blue-dark);
  background: var(--cyan-light);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}

.home-hero {
  position: relative;
  min-height: min(690px, calc(100vh - 200px));
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
  isolation: isolate;
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 20, 51, 0.96) 0%, rgba(18, 27, 61, 0.84) 45%, rgba(18, 27, 61, 0.12) 78%);
  content: "";
}

.home-hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero-inner {
  display: flex;
  min-height: inherit;
  align-items: center;
}

.home-hero-content {
  width: min(730px, 72%);
  padding-block: 84px;
}

.home-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3.6rem, 8vw, 7.7rem);
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}

.home-hero h1 span {
  color: var(--cyan);
}

.home-hero p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-stamp {
  position: absolute;
  right: max(5vw, 32px);
  bottom: 34px;
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: var(--white);
  background: rgba(32, 37, 77, 0.46);
  backdrop-filter: blur(8px);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.page-hero {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
  isolation: isolate;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 21, 50, 0.92), rgba(15, 21, 50, 0.42) 62%, rgba(15, 21, 50, 0.12));
  content: "";
}

.page-hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  display: flex;
  min-height: inherit;
  align-items: end;
  padding-block: 76px;
}

.page-hero-copy {
  max-width: 810px;
}

.page-hero h1 {
  color: var(--white);
  text-wrap: balance;
}

.page-hero p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

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

.feature-split {
  display: grid;
  align-items: center;
  gap: clamp(36px, 7vw, 92px);
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.feature-image-wrap {
  position: relative;
}

.feature-image-wrap::before {
  position: absolute;
  z-index: -1;
  top: -22px;
  right: 24px;
  bottom: 28px;
  left: -24px;
  border: 3px solid var(--cyan);
  border-radius: var(--radius);
  content: "";
}

.feature-image {
  width: 100%;
  min-height: 520px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.feature-copy h2 {
  color: var(--blue);
}

.status-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 64px);
  border-left: 7px solid var(--cyan);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow-small);
}

.status-panel::after {
  position: absolute;
  top: -95px;
  right: -75px;
  width: 250px;
  height: 250px;
  border: 34px solid rgba(33, 182, 219, 0.11);
  border-radius: 50%;
  content: "";
}

.status-panel h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

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

.clean-list {
  display: grid;
  gap: 13px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 28px;
}

.clean-list li::before {
  position: absolute;
  top: 0.62em;
  left: 1px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--blue);
  border-radius: 50% 50% 50% 0;
  content: "";
  transform: rotate(-45deg);
}

.mosaic-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(12, 1fr);
}

.mosaic-card {
  position: relative;
  display: flex;
  min-height: 450px;
  overflow: hidden;
  align-items: end;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow-small);
  isolation: isolate;
}

.mosaic-card:nth-child(1),
.mosaic-card:nth-child(4) {
  grid-column: span 7;
}

.mosaic-card:nth-child(2),
.mosaic-card:nth-child(3) {
  grid-column: span 5;
}

.mosaic-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 21, 50, 0.95), rgba(15, 21, 50, 0.2) 70%);
  content: "";
}

.mosaic-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mosaic-card:hover img {
  transform: scale(1.045);
}

.mosaic-card-disabled {
  cursor: default;
}

.mosaic-card-disabled:hover img {
  transform: none;
}

.mosaic-copy {
  padding: clamp(26px, 4vw, 48px);
}

.mosaic-copy h3 {
  color: var(--white);
}

.mosaic-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
}

.mosaic-copy .text-link {
  color: var(--cyan);
}

.stats-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  min-height: 220px;
  padding: 42px 28px;
  background: var(--navy);
  text-align: center;
}

.stat-number {
  display: block;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(3.8rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
}

.stat-label {
  display: block;
  max-width: 180px;
  margin: 12px auto 0;
  color: var(--cyan);
  font-family: var(--display);
  line-height: 1.22;
  text-transform: uppercase;
}

.data-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  text-align: center;
}

.data-note a {
  color: inherit;
}

.archive-notice {
  display: grid;
  gap: 10px;
  padding: clamp(24px, 4vw, 38px);
  border-left: 6px solid var(--cyan);
  border-radius: var(--radius-small);
  background: var(--cyan-light);
}

.archive-notice-label {
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.archive-notice h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.archive-notice p {
  margin: 0;
  color: var(--muted);
}

.archive-flyer {
  max-height: none;
  background: var(--white);
  object-fit: contain;
}

.archive-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
}

.archive-gallery img {
  width: 100%;
  aspect-ratio: 335 / 287;
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-small);
  object-fit: cover;
}

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

.info-card,
.media-card,
.donation-card,
.cat-card,
.event-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.info-card {
  padding: clamp(28px, 4vw, 44px);
}

.info-card-number {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--cyan-light);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
}

.media-card-image,
.donation-card-image,
.event-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.media-card-body,
.donation-card-body,
.event-card-body {
  padding: 28px;
}

.media-card-body p,
.donation-card-body p,
.event-card-body p {
  color: var(--muted);
}

.partner-grid {
  display: grid;
  align-items: center;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

.partner-link {
  display: grid;
  min-height: 230px;
  place-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.partner-link:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.partner-link img {
  max-width: 180px;
  max-height: 160px;
  object-fit: contain;
}

.prose {
  max-width: 820px;
}

.prose > * + * {
  margin-top: 1.15em;
}

.prose h2,
.prose h3 {
  margin-top: 1.4em;
}

.prose-wide {
  max-width: 980px;
}

.content-split {
  display: grid;
  align-items: start;
  gap: clamp(40px, 7vw, 88px);
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.content-image {
  position: sticky;
  top: 32px;
  width: 100%;
  max-height: 720px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

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

.care-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  padding: 38px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.care-letter {
  position: absolute;
  right: 18px;
  bottom: -40px;
  color: rgba(255, 255, 255, 0.06);
  font-family: var(--display);
  font-size: 12rem;
  font-weight: 700;
  line-height: 1;
}

.care-card h3 {
  color: var(--cyan);
}

.care-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, 1fr);
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-small);
  object-fit: cover;
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(4) {
  grid-column: span 7;
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(3) {
  grid-column: span 5;
}

.step-list {
  display: grid;
  gap: 20px;
  margin: 32px 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.step-list li {
  display: grid;
  align-items: start;
  gap: 18px;
  grid-template-columns: 54px 1fr;
  counter-increment: steps;
}

.step-list li::before {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-dark);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  content: counter(steps, decimal-leading-zero);
}

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

.provided-list li {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

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

.opportunity-card {
  padding: 30px;
  border-top: 5px solid var(--cyan);
  border-radius: var(--radius-small);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

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

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

.donation-card {
  display: flex;
  flex-direction: column;
}

.donation-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.donation-card-body p {
  flex: 1;
}

.donation-card .button {
  margin-top: 12px;
}

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

.event-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 16px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.contact-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.contact-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-value {
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.35;
}

.assistance-layout {
  display: grid;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.assistance-image {
  width: min(100%, 590px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.cat-card {
  display: flex;
  flex-direction: column;
}

.cat-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cat-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.cat-meta {
  margin-bottom: 8px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cat-card-body h3 {
  margin-bottom: 15px;
}

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

.cat-card-body .text-link {
  margin-top: auto;
}

.guidelines-layout {
  display: grid;
  align-items: start;
  gap: clamp(36px, 6vw, 72px);
  grid-template-columns: minmax(270px, 0.75fr) minmax(0, 1.25fr);
}

.guidelines-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  color: var(--blue);
  font-size: 1.5rem;
  content: "+";
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion-content {
  padding: 0 4px 28px;
}

.rate-grid {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rate {
  padding: 18px;
  border-radius: var(--radius-small);
  background: var(--cream);
}

.rate strong {
  display: block;
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: 1.2rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(64px, 8vw, 104px);
  color: var(--white);
  background: var(--blue-dark);
}

.cta-band .eyebrow {
  color: var(--cyan-light);
}

.cta-band::before {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 360px;
  height: 360px;
  border: 50px solid rgba(33, 182, 219, 0.13);
  border-radius: 50%;
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.cta-copy {
  max-width: 760px;
}

.cta-copy h2 {
  color: var(--white);
}

.cta-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.footer-main {
  display: grid;
  gap: 54px;
  padding-block: 72px;
  grid-template-columns: 1.35fr 0.65fr;
}

.footer-columns {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.footer-title {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1.35rem;
}

.footer-address {
  font-style: normal;
}

.footer-address a,
.footer-links a,
.social-links a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-address a:hover,
.footer-links a:hover,
.social-links a:hover {
  color: var(--cyan);
}

.footer-links,
.social-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-donate {
  display: inline-block;
  margin-top: 18px;
  color: var(--cyan);
  font-family: var(--display);
  font-weight: 700;
}

.footer-link-disabled {
  color: rgba(255, 255, 255, 0.64);
  cursor: default;
}

.footer-donate.footer-link-disabled {
  color: rgba(255, 255, 255, 0.72);
}

.newsletter-panel {
  padding: 32px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--cream);
}

.newsletter-panel h3 {
  font-size: 2rem;
}

.newsletter-form {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.newsletter-form label {
  color: var(--muted);
  font-size: 0.86rem;
}

.newsletter-form input {
  width: 100%;
  min-height: 50px;
  padding: 12px 15px;
  border: 1px solid #bec7d4;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
}

.newsletter-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  min-height: 1.4em;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-bottom {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 32px, 820px);
  }

  body {
    font-size: 16px;
  }

  .brand-row {
    min-height: 104px;
    justify-content: space-between;
  }

  .brand-mark {
    width: min(320px, 65vw);
  }

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

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: 0;
    overflow: hidden;
    border-top: 0;
    background: var(--white);
    box-shadow: var(--shadow-small);
    visibility: hidden;
    transition: max-height 260ms ease, visibility 260ms;
  }

  .site-nav.is-open {
    max-height: min(80vh, 680px);
    overflow-y: auto;
    visibility: visible;
  }

  .nav-list {
    display: block;
    min-height: 0;
    padding-block: 18px 26px;
  }

  .nav-item {
    display: block;
    border-bottom: 1px solid var(--line);
  }

  .nav-link {
    display: flex;
    min-height: 50px;
    padding: 12px 4px;
    font-size: 1rem;
  }

  .nav-link::after {
    bottom: -1px;
  }

  .submenu-heading .nav-link {
    flex: 1;
  }

  .submenu-toggle {
    display: grid;
    width: 48px;
    min-width: 48px;
    min-height: 48px;
    place-items: center;
    align-self: center;
    border-radius: 50%;
  }

  .submenu-toggle:hover,
  .submenu-toggle:focus-visible {
    color: var(--blue-dark);
    background: var(--cyan-light);
  }

  .submenu {
    position: static;
    display: none;
    width: 100%;
    margin: 0;
    padding: 0 0 12px 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    transform: none;
    visibility: hidden;
  }

  .has-submenu.is-submenu-open .submenu {
    display: grid;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .submenu a,
  .submenu-disabled {

    padding-block: 7px;
  }

  .home-hero {
    min-height: 620px;
  }

  .home-hero::after {
    background: linear-gradient(90deg, rgba(14, 20, 51, 0.93), rgba(18, 27, 61, 0.48));
  }

  .home-hero-content {
    width: min(680px, 88%);
  }

  .feature-split,
  .content-split,
  .guidelines-layout,
  .assistance-layout {
    grid-template-columns: 1fr;
  }

  .feature-image {
    min-height: 460px;
  }

  .content-image {
    position: static;
    max-height: 560px;
  }

  .mosaic-card:nth-child(n) {
    grid-column: span 6;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 24px, 560px);
    --radius: 17px;
  }

  .section {
    padding-block: 68px;
  }

  .section-tight {
    padding-block: 50px;
  }

  .donation-bar-inner {
    min-height: 52px;
    gap: 8px;
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .donation-bar-action {
    min-height: 28px;
    padding: 4px 10px;
    font-size: 0.8rem;
  }

  .brand-row {
    min-height: 86px;
  }

  .brand-mark {
    width: min(245px, 68vw);
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .home-hero {
    min-height: 590px;
  }

  .home-hero::after {
    background: linear-gradient(0deg, rgba(14, 20, 51, 0.96), rgba(14, 20, 51, 0.28));
  }

  .home-hero-image {
    object-position: 42% center;
  }

  .home-hero-inner {
    align-items: end;
  }

  .home-hero-content {
    width: 100%;
    padding-block: 70px;
  }

  .home-hero h1 {
    font-size: clamp(3.4rem, 18vw, 5.4rem);
  }

  .hero-stamp {
    display: none;
  }

  .page-hero {
    min-height: 430px;
  }

  .page-hero::after {
    background: linear-gradient(0deg, rgba(15, 21, 50, 0.95), rgba(15, 21, 50, 0.18));
  }

  .page-hero-content {
    padding-block: 52px;
  }

  .feature-image {
    min-height: 380px;
  }

  .feature-image-wrap::before {
    top: -13px;
    right: 16px;
    bottom: 20px;
    left: -12px;
  }

  .mosaic-grid,
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mosaic-card:nth-child(n),
  .gallery-grid img:nth-child(n) {
    grid-column: auto;
  }

  .mosaic-card {
    min-height: 390px;
  }

  .stats-grid,
  .partner-grid,
  .card-grid,
  .donation-grid,
  .event-grid,
  .cat-grid,
  .care-grid,
  .opportunity-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 180px;
  }

  .partner-link {
    min-height: 190px;
  }

  .gallery-grid img {
    height: 240px;
  }

  .rate-grid {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }

  .footer-columns > :first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 16px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
