@font-face {
  font-family: "Noto Sans Devanagari";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/noto-sans-devanagari-400.ttf") format("truetype");
}

@font-face {
  font-family: "Noto Sans Devanagari";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/noto-sans-devanagari-700.ttf") format("truetype");
}

@font-face {
  font-family: "Noto Sans Devanagari";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/noto-sans-devanagari-800.ttf") format("truetype");
}

:root {
  --ink: #102432;
  --muted: #52616d;
  --paper: #fbfcf8;
  --surface: #ffffff;
  --blue: #04749a;
  --blue-dark: #064960;
  --maroon: #a3164e;
  --gold: #f0c557;
  --line: #d8e0e5;
  --shadow: 0 20px 50px rgba(16, 36, 50, 0.12);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 180ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
footer[id],
main[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans Devanagari", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--maroon);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 248, 0.94);
  border-bottom: 1px solid rgba(216, 224, 229, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  text-decoration: none;
  min-width: 220px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

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

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav a,
.text-link {
  text-decoration: none;
}

.nav a:hover,
.text-link:hover {
  color: var(--maroon);
}

.nav a:focus-visible,
.button:focus-visible,
.nav-cta:focus-visible,
.nav-toggle:focus-visible,
.brand:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition:
    filter var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.nav-cta,
.button.primary {
  background: var(--maroon);
  color: #fff;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.button.light {
  color: var(--blue-dark);
  background: #fff;
  border-color: #fff;
}

@media (hover: hover) {
  .nav-cta:hover,
  .button.primary:hover {
    filter: brightness(0.9);
  }

  .button.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
  }

  .button.light:hover {
    background: var(--paper);
  }
}

.nav-cta:active,
.button:active {
  transform: translateY(1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: clamp(560px, calc(100svh - 128px), 760px);
  overflow: hidden;
  background: var(--ink);
}

.hero-content {
  align-self: center;
  max-width: 820px;
  padding: clamp(54px, 8vh, 92px) clamp(20px, 6vw, 72px);
  color: #fff;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background-color: #e86405;
}

.hero-visual::before {
  position: absolute;
  inset: 0 -20% 0 0;
  background: url("assets/hero-chairman-desktop.webp") right center / cover no-repeat;
  content: "";
  transform: translateX(-25%) scale(1.2);
  transform-origin: center;
}

.hero-motto {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.site-footer h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(2.25rem, 4.85vw, 4rem);
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  text-wrap: pretty;
}

.hero-actions,
.contact-row,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-strip div {
  padding: 22px clamp(18px, 4vw, 56px);
  background: var(--surface);
}

.fact-strip span,
.event-details dt {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fact-strip strong,
.event-details dd {
  display: block;
  margin: 4px 0 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 6vw, 72px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section h2 {
  max-width: 880px;
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.section-heading > p,
.event-copy p,
.transparency-copy p {
  max-width: 70ch;
  color: var(--muted);
  font-size: 1.08rem;
  text-wrap: pretty;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.work-card,
.support-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.work-card h3,
.support-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.work-card p,
.support-card p {
  margin: 0;
  color: var(--muted);
}

.chairman-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  color: #351a14;
  font-family: "Noto Sans Devanagari", sans-serif;
  background: #fff8df;
}

.chairman-heading {
  position: sticky;
  top: 120px;
}

.chairman-context {
  margin: 0 0 12px;
  color: var(--maroon);
  font-size: 1rem;
  font-weight: 800;
}

.chairman-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.12;
}

.chairman-message {
  margin: 0;
  padding: clamp(26px, 4vw, 50px);
  border: 1px solid rgba(163, 22, 78, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.chairman-message blockquote {
  max-width: 70ch;
  margin: 0;
}

.chairman-message blockquote::before {
  display: block;
  height: 0.72em;
  color: var(--gold);
  content: "“";
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.85;
}

.chairman-message blockquote::after {
  display: block;
  height: 0.58em;
  margin-top: 6px;
  color: var(--gold);
  content: "”";
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.7;
  text-align: right;
}

.chairman-message p {
  margin: 0 0 20px;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.9;
}

.chairman-message figcaption {
  display: grid;
  gap: 2px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(163, 22, 78, 0.18);
}

.chairman-message figcaption strong {
  color: var(--maroon);
  font-size: 1.08rem;
}

.chairman-message figcaption span {
  color: #725c52;
}

.event-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: #eef8fb;
}

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

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

.event-details div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(4, 116, 154, 0.2);
  border-radius: 8px;
  background: #fff;
}

.event-details dt,
.event-details dd {
  margin: 0;
}

.event-details dd {
  color: var(--ink);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--blue-dark);
  font-weight: 900;
}

.poster-frame {
  margin: 0;
}

.poster-link {
  display: block;
  width: min(100%, 520px);
  margin-left: auto;
  border-radius: 8px;
}

.poster-frame img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.poster-frame figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: right;
}

.poster-link:focus-visible {
  outline: 3px solid var(--maroon);
  outline-offset: 4px;
}

.donation-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  background: var(--blue-dark);
  color: #fff;
}

.donation-intro {
  max-width: 820px;
}

.donation-intro > p {
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.bank-card {
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.bank-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.bank-card-header span,
.bank-details dt {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bank-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.bank-details div {
  padding: 17px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bank-details div:nth-child(-n + 2) {
  border-top: 0;
}

.bank-details div:nth-child(even) {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.bank-details dt,
.bank-details dd {
  margin: 0;
}

.bank-details dd {
  margin-top: 4px;
  color: #fff;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.donation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.light-link {
  color: #fff;
}

.light-link:hover {
  color: var(--gold);
}

.qr-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

.qr-image-wrap {
  overflow: hidden;
  max-height: 485px;
  border-radius: 10px;
}

.qr-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qr-card figcaption {
  display: grid;
  gap: 3px;
  padding: 14px 8px 3px;
  color: var(--ink);
  text-align: center;
}

.qr-card figcaption span {
  color: var(--muted);
  font-size: 0.82rem;
}

.qr-card figcaption .payment-check {
  margin-top: 8px;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.get-involved-section {
  background: #eef8fb;
}

.get-involved-section .section-heading {
  max-width: 900px;
}

.get-involved-section .support-card {
  background: #fff;
}

.get-involved-section .support-card.strong {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.get-involved-section .support-card.strong p {
  color: rgba(16, 36, 50, 0.78);
}

.get-involved-section .support-card .button {
  margin-top: 24px;
}

.transparency-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 1fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: start;
  background: var(--paper);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(250px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  padding: 56px clamp(20px, 6vw, 72px);
  color: #fff;
  background: var(--ink);
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer .footer-brand-row img {
  width: 68px;
  height: 68px;
  margin: 0;
  border-radius: 50%;
  object-fit: cover;
}

.site-footer h2 {
  max-width: 430px;
  font-size: clamp(1.55rem, 2.35vw, 2.15rem);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer .footer-role {
  margin: 26px 0 5px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer .footer-chairman {
  margin: 0;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
}

.site-footer .footer-city {
  margin: 8px 0 0;
}

.footer-contact {
  gap: 0;
}

.footer-contact > strong,
.footer-location > strong {
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-contact .primary-phone {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 12px;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
}

.event-contacts {
  margin-top: 28px;
}

.event-contacts > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  font-weight: 750;
}

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

.phone-grid a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.86rem;
  font-weight: 750;
  text-align: center;
}

.phone-grid .landline {
  grid-column: 1 / -1;
}

.footer-connect {
  min-width: 0;
}

.footer-connect .footer-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.footer-connect .footer-actions .button {
  width: 100%;
  min-width: 0;
  padding: 0 14px;
}

.facebook-button {
  gap: 10px;
}

.facebook-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.facebook-icon circle {
  fill: #1877f2;
}

.facebook-icon path {
  fill: #fff;
}

address {
  display: grid;
  gap: 5px;
  font-style: normal;
}

address strong {
  margin-bottom: 6px;
}

address a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

address a:hover {
  color: var(--gold);
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 44px clamp(20px, 6vw, 56px) 56px;
  }

  .hero-visual {
    order: -1;
    aspect-ratio: 1080 / 609;
    background-image: url("facebook-posts/header.jpg");
    background-position: right center;
    background-size: cover;
  }

  .hero-visual::before {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .nav-enhanced .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav {
    order: 3;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(16, 36, 50, 0.12);
  }

  .nav-enhanced .nav {
    display: none;
  }

  .nav-enhanced .nav[data-open] {
    display: flex;
  }

  .nav a {
    padding: 11px 12px;
    border-radius: 6px;
    white-space: nowrap;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: var(--surface);
  }

  .fact-strip,
  .work-grid,
  .support-grid,
  .chairman-section,
  .event-section,
  .donation-section,
  .transparency-section {
    grid-template-columns: 1fr;
  }

  .poster-link {
    margin-left: 0;
  }

  .poster-frame figcaption {
    text-align: left;
  }

  .qr-card {
    width: min(100%, 430px);
  }

  .chairman-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
    flex-wrap: nowrap;
    gap: 8px;
    min-height: 64px;
    padding: 10px 12px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
    gap: 8px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    max-width: 110px;
    font-size: 0.78rem;
    line-height: 1.05;
    white-space: normal;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    flex: 0 0 auto;
    gap: 7px;
    padding: 0 10px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 12px;
    left: 12px;
    width: auto;
  }

  .nav-cta {
    width: auto;
    flex: 0 0 auto;
    padding: 8px 12px;
  }

  .hero-actions,
  .contact-row,
  .footer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .contact-row .button,
  .footer-actions .button {
    width: 100%;
  }

  .section {
    padding: 56px 18px;
  }

  .event-details,
  .bank-details {
    grid-template-columns: 1fr;
  }

  .bank-card-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .bank-details div:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .bank-details div:nth-child(even) {
    border-left: 0;
  }

  .donation-actions {
    flex-direction: column;
  }

  .donation-actions .button,
  .donation-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .work-card,
  .support-card {
    min-height: 0;
    padding: 22px;
  }

}

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

.impact-section {
  color: #fff;
  background:
    radial-gradient(circle at 90% 5%, rgba(240, 197, 87, 0.14), transparent 28rem),
    var(--ink);
}

.impact-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.impact-timeline {
  position: relative;
  display: grid;
  max-width: 1080px;
  margin-top: 40px;
}

.impact-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 168px;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.2);
}

.impact-card {
  position: relative;
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 48px;
  padding: 0 0 42px;
}

.impact-card::before {
  position: absolute;
  top: 8px;
  left: 162px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.impact-card time {
  color: var(--gold);
  font-weight: 900;
  text-align: right;
}

.impact-card > div {
  max-width: 68ch;
  padding: 0 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.impact-card h3 {
  margin: 4px 0 10px;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.25;
}

.impact-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.impact-card .impact-type {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 15px;
  color: var(--gold);
  font-weight: 850;
  text-decoration: none;
}

.impact-card a:hover {
  text-decoration: underline;
}

.impact-archive {
  min-width: 0;
}

.impact-archive summary {
  position: relative;
  display: block;
  min-height: 48px;
  max-width: 68ch;
  margin-left: 193px;
  padding: 11px 48px 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

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

.impact-archive summary::after {
  position: absolute;
  top: 50%;
  right: 14px;
  content: "+";
  color: var(--gold);
  font-size: 1.35rem;
  transform: translateY(-50%);
}

.impact-archive[open] summary::after {
  content: "−";
}

.impact-archive summary span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 700;
}

.impact-archive[open] summary {
  margin-bottom: 38px;
}

.video-section {
  background: #fff;
}

.mobile-scroll-hint {
  display: none;
}

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

.video-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #07151d;
}

.video-frame iframe,
.video-poster,
.video-poster img {
  width: 100%;
  height: 100%;
}

.video-frame iframe {
  display: block;
  border: 0;
}

.video-poster {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  color: #fff;
  cursor: pointer;
  background: #07151d;
}

.video-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(3, 16, 23, 0.42), transparent 60%);
}

.video-poster img {
  object-fit: contain;
  transition: transform 220ms ease, opacity 220ms ease;
}

.video-poster:hover img {
  opacity: 0.84;
  transform: scale(1.025);
}

.play-mark {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  padding-left: 4px;
  border-radius: 50%;
  color: #fff;
  background: var(--maroon);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}

.video-copy {
  padding: 22px;
}

.video-copy > span {
  color: var(--maroon);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.video-copy h3 {
  margin: 7px 0 16px;
  font-size: 1.18rem;
  line-height: 1.35;
}

.video-copy a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--blue-dark);
  font-weight: 850;
  text-decoration: none;
}

.video-copy a:hover {
  text-decoration: underline;
}

.video-more {
  max-width: 960px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.video-more h3 {
  margin: 26px 0 8px;
  font-size: 1.2rem;
}

.video-more a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.video-more a:hover strong {
  color: var(--maroon);
}

.video-more a > span:first-child {
  display: grid;
  gap: 2px;
}

.video-more a > span:last-child {
  color: var(--blue-dark);
  font-weight: 850;
  white-space: nowrap;
}

.video-more small {
  color: var(--muted);
  font-size: 0.82rem;
}

.short-section {
  background: #eef8fb;
}

.short-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1050px;
}

.short-card {
  display: flex;
  min-height: 190px;
  align-items: flex-end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--surface);
  text-decoration: none;
  transition:
    border-color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.short-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.short-card p {
  margin: 0 0 8px;
  color: var(--maroon);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.short-card h3 {
  margin: 0 0 18px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.3;
}

.short-card div > span {
  color: var(--blue-dark);
  font-weight: 850;
}

.event-copy .event-update {
  margin: 22px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(4, 116, 154, 0.2);
  border-radius: 8px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.78);
}

.card-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 20px;
  color: var(--blue-dark);
  font-weight: 850;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

.transparency-copy .button {
  margin-top: 18px;
}

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

.credential-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(4, 116, 154, 0.28);
  border-radius: 12px;
  background: #fff;
}

.credential-card > span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.credential-card strong {
  display: block;
  margin-top: 18px;
  color: var(--blue-dark);
  font-size: 1.35rem;
}

.credential-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.governance-card {
  grid-column: 1 / -1;
  min-height: 0;
  border-color: rgba(163, 22, 78, 0.32);
}

.governance-card strong {
  color: var(--maroon);
}

.footer-location strong,
.footer-location p {
  display: block;
}

.footer-location p {
  margin: 8px 0 12px;
}

.footer-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.video-poster:focus-visible,
.short-card:focus-visible,
.impact-card a:focus-visible,
.impact-archive summary:focus-visible,
.video-copy a:focus-visible,
.video-more a:focus-visible,
.card-link:focus-visible,
.text-link:focus-visible,
.footer-contact a:focus-visible,
.footer-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-connect {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
    gap: 36px;
    align-items: end;
  }

  .footer-connect .footer-actions {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 38px 20px 50px;
  }

  .hero-visual {
    min-height: clamp(230px, 66vw, 320px);
    order: -1;
    background-image: url("facebook-posts/header.jpg");
    background-position: right center;
  }

  .impact-timeline::before {
    left: 6px;
  }

  .impact-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 30px;
  }

  .impact-card::before {
    left: 0;
  }

  .impact-card time {
    text-align: left;
  }

  .impact-archive summary {
    margin-left: 30px;
  }

  .short-grid,
  .credential-grid {
    grid-template-columns: 1fr;
  }

  .short-card {
    min-height: 160px;
  }

}

@media (max-width: 370px) {
  .nav-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .nav-toggle {
    width: 44px;
    justify-content: center;
    padding: 0;
  }
}

@media (max-width: 640px) {
  .video-grid {
    display: flex;
    overflow-x: auto;
    padding: 2px 2px 14px;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--line) transparent;
  }

  .video-card {
    flex: 0 0 min(82vw, 320px);
    scroll-snap-align: start;
  }

  .mobile-scroll-hint {
    display: block;
    margin: -18px 0 14px;
    color: var(--muted);
    font-size: 0.9rem;
  }

  .video-more a {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 14px 0;
  }

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

  .footer-brand-row {
    align-items: flex-start;
  }

  .footer-connect {
    grid-column: auto;
    display: block;
  }

  .footer-connect .footer-actions {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .play-mark {
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-cta,
  .button,
  .video-poster img,
  .short-card {
    transition: none;
  }
}
