:root {
  --blue: #0b7ee8;
  --deep-blue: #063f8f;
  --red: #d91f2a;
  --ink: #142033;
  --muted: #5b6675;
  --line: #dce4ee;
  --paper: #ffffff;
  --soft: #f3f7fb;
  --gold: #f2c14e;
  --shadow: 0 18px 45px rgba(13, 35, 63, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--blue);
}

.brand strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 6px;
  color: #263449;
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--deep-blue);
  background: #eaf4ff;
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--red);
}

.site-nav .nav-donate {
  color: #111927;
  background: var(--gold);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
  color: #fff;
  background: #b81622;
}

.site-nav .nav-donate:hover,
.site-nav .nav-donate.active {
  color: #111927;
  background: #ffd76d;
}

.nav-toggle {
  display: none;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(46px, 7vw, 90px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(115deg, rgba(6, 63, 143, 0.95), rgba(11, 126, 232, 0.86) 55%, rgba(217, 31, 42, 0.83)),
    url("assets/aadc-logo.jpg") center right 10% / min(560px, 75vw) no-repeat;
  color: #fff;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero .eyebrow,
.join-strip .eyebrow {
  color: #ffe48a;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 950px;
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 0.98;
  font-weight: 900;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.lead {
  max-width: 680px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
}

.hero-copy p:not(.eyebrow):not(.lead) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.button.primary {
  color: #fff;
  background: var(--red);
}

.button.secondary {
  color: #fff;
  background: var(--deep-blue);
}

.button.ghost {
  color: var(--deep-blue);
  background: #fff;
  border-color: var(--line);
}

.button.donate-button {
  color: #111927;
  background: var(--gold);
  border-color: var(--gold);
}

.hero .button.ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
}

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

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--deep-blue);
  font-weight: 900;
}

.hero-panel {
  justify-self: end;
  width: min(100%, 420px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.hero-panel img {
  width: min(220px, 60vw);
  height: min(220px, 60vw);
  margin: 0 auto 22px;
  border-radius: 50%;
}

.hero-panel strong,
.hero-panel span {
  display: block;
  text-align: center;
}

.hero-panel strong {
  font-size: 1.45rem;
  line-height: 1.15;
}

.hero-panel span {
  margin-top: 7px;
  color: var(--muted);
  font-weight: 700;
}

.photo-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: #111927;
}

.anniversary-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: clamp(30px, 5vw, 54px) clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid var(--line);
  color: #fff;
  background: linear-gradient(125deg, #111927, var(--deep-blue) 58%, var(--red));
}

.anniversary-feature div:first-child {
  max-width: 780px;
}

.anniversary-feature h2 {
  margin-bottom: 8px;
}

.anniversary-feature p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
}

.event-date {
  color: var(--gold) !important;
  font-weight: 900;
}

.anniversary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.photo-slot {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(17, 25, 39, 0.18), rgba(17, 25, 39, 0.92)),
    linear-gradient(135deg, var(--deep-blue), var(--blue) 60%, var(--red));
  background-position: center;
  background-size: cover;
}

.photo-slot:nth-child(1) {
  background-image:
    linear-gradient(180deg, rgba(17, 25, 39, 0.18), rgba(17, 25, 39, 0.92)),
    url("assets/aadc-2008-hillary-hq.jpeg"),
    linear-gradient(135deg, var(--deep-blue), var(--blue) 60%, var(--red));
}

.photo-slot:nth-child(2) {
  background-image:
    linear-gradient(180deg, rgba(17, 25, 39, 0.18), rgba(17, 25, 39, 0.92)),
    url("assets/aadc-2016-hillary-rally.jpeg"),
    linear-gradient(135deg, var(--deep-blue), var(--blue) 60%, var(--red));
}

.photo-slot:nth-child(3) {
  background-image:
    linear-gradient(180deg, rgba(17, 25, 39, 0.18), rgba(17, 25, 39, 0.92)),
    url("assets/aadc-2018-state-leaders.png"),
    linear-gradient(135deg, var(--deep-blue), var(--blue) 60%, var(--red));
}

.photo-slot span {
  margin-bottom: 8px;
  color: #ffe48a;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-slot strong {
  font-size: 1.18rem;
  line-height: 1.2;
}

.photo-slot small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
}

.section,
.band,
.split-section,
.join-strip {
  padding: clamp(52px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.donate-card {
  border-color: var(--gold);
  box-shadow: 0 18px 45px rgba(242, 193, 78, 0.22);
}

.band {
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading p {
  color: var(--muted);
}

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

.impact-grid div {
  min-height: 108px;
  padding: 22px;
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(13, 35, 63, 0.07);
  font-weight: 800;
}

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

.story-timeline article,
.voice-card,
.framework-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(13, 35, 63, 0.07);
}

.story-timeline span,
.voice-card span,
.framework-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 34px;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--deep-blue);
  font-weight: 900;
}

.story-timeline p,
.voice-card p,
.framework-grid p {
  color: var(--muted);
}

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

.voice-card.wide {
  grid-column: 1 / -1;
}

.voice-card.secondary-voice {
  background: #f8fbff;
  box-shadow: none;
}

.voice-card.secondary-voice h2 {
  color: var(--muted);
}

.research-list {
  display: grid;
  gap: 16px;
}

.research-list article {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(13, 35, 63, 0.07);
}

.research-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.feature-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.feature-strip span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--deep-blue);
  background: #fff;
  font-weight: 900;
}

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

.insight-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.insight-categories a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--deep-blue);
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(13, 35, 63, 0.06);
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(13, 35, 63, 0.07);
}

.card p,
.member-card p,
.program-list p {
  color: var(--muted);
}

.card .card-role {
  margin-top: -4px;
  margin-bottom: 12px;
  color: var(--deep-blue);
  font-weight: 400;
}

.icon-badge {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.quote-panel,
.story-video {
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--deep-blue), var(--blue) 58%, var(--red));
  color: #fff;
  box-shadow: var(--shadow);
}

.story-video {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #111927;
}

.story-video video,
.story-video img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: contain;
  background: #111927;
}

.story-video div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(17, 25, 39, 0.78);
  color: #fff;
}

.story-video span,
.story-video small {
  display: block;
}

.story-video span {
  font-weight: 900;
}

.story-video small {
  color: rgba(255, 255, 255, 0.76);
}

.story-video a {
  display: inline-flex;
  margin-top: 10px;
  color: #ffe48a;
  font-weight: 900;
}

.quote-panel p {
  max-width: 430px;
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.12;
  font-weight: 900;
}

.join-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: var(--deep-blue);
  color: #fff;
}

.join-strip div {
  max-width: 780px;
}

.join-strip p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
}

.page-hero {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background: linear-gradient(125deg, #f8fbff, #eaf4ff 58%, #fff7f4);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.leader-feature {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.leader-photo {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: var(--deep-blue);
  font-weight: 900;
}

.leader-photo.image-photo {
  overflow: hidden;
  background: #eaf4ff;
}

.leader-photo.image-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.role {
  color: var(--deep-blue);
  font-weight: 800;
}

.leader-bio p {
  margin-bottom: 12px;
  color: var(--muted);
}

.leader-bio p:last-child {
  margin-bottom: 0;
}

.leadership-journey-window {
  display: block;
  position: relative;
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(13, 35, 63, 0.07);
}

.leadership-journey-window > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  color: var(--deep-blue);
  font-weight: 800;
}

.leadership-journey-window > span::after {
  content: "View gallery";
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
}

.journey-window-track {
  display: flex;
  gap: 8px;
  width: max-content;
  padding: 0 8px 10px;
  animation: journey-window-scroll 34s linear infinite;
}

.leadership-journey-window:hover .journey-window-track {
  animation-play-state: paused;
}

.journey-window-track img {
  width: 118px;
  height: 82px;
  flex: 0 0 auto;
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
  background: var(--soft);
}

@keyframes journey-window-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 4px));
  }
}

.compact .card {
  min-height: 135px;
}

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

.profile-card img {
  width: min(100%, 220px);
  aspect-ratio: 1;
  margin-bottom: 16px;
  align-self: center;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 28%;
}

.profile-card img.portrait-photo {
  object-fit: contain;
  object-position: center center;
  background: #eaf4ff;
}

.profile-card img.cissy-photo {
  object-position: center 42%;
}

.advisory-chair-card {
  grid-column: span 2;
}

.advisory-chair-card img {
  object-position: center top;
}

.profile-card .bio {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.chapter-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.chapter-directory article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(13, 35, 63, 0.06);
}

.chapter-directory span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
}

.chapter-directory h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.chapter-directory p {
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-showcase-section {
  background: #f7fbff;
}

.gallery-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.gallery-showcase p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.gallery-showcase .button {
  margin-top: 18px;
}

.gallery-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(13, 35, 63, 0.07);
}

.gallery-preview img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
}

.compact-hero {
  min-height: 0;
}

.muted-card {
  background: var(--soft);
}

.journey-section {
  background: #fff;
}

.journey-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.journey-tabs button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.journey-tabs button.active,
.journey-tabs button:hover {
  color: #fff;
  background: var(--deep-blue);
  border-color: var(--deep-blue);
}

.profile-gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.profile-gallery-tabs button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.profile-gallery-tabs button.active,
.profile-gallery-tabs button:hover {
  color: #fff;
  background: var(--deep-blue);
  border-color: var(--deep-blue);
}

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

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

.journey-card {
  min-width: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(13, 35, 63, 0.07);
  text-align: left;
  cursor: pointer;
}

.journey-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.journey-card span,
.journey-card strong {
  display: block;
  padding-right: 14px;
  padding-left: 14px;
}

.profile-gallery-card strong {
  min-height: 64px;
}

.profile-gallery-card img {
  object-position: center top;
}

.profile-gallery-card img[src$="2016-sheila-jackson-lee.webp"],
.profile-gallery-card img[src$="2016-cory-booker-houston-private-reception.jpg"],
.profile-gallery-card img[src$="2023-ling-white-house.webp"] {
  object-fit: contain;
  object-position: center center;
}

.journey-card span {
  padding-top: 12px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
}

.journey-card strong {
  min-height: 76px;
  padding-top: 6px;
  padding-bottom: 16px;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.3;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(17, 25, 39, 0.88);
}

.image-modal[aria-hidden="false"] {
  display: flex;
}

.image-modal img {
  max-width: min(1100px, 92vw);
  max-height: 78vh;
  border-radius: 8px;
  object-fit: contain;
  background: #111927;
}

.image-modal p {
  position: fixed;
  right: 28px;
  bottom: 22px;
  left: 28px;
  margin: 0;
  color: #fff;
  text-align: center;
  font-weight: 800;
}

.modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  color: #fff;
  background: rgba(17, 25, 39, 0.7);
  font-weight: 900;
  cursor: pointer;
}

.campaign-video-section {
  background: var(--soft);
}

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

.video-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(13, 35, 63, 0.07);
}

.video-frame,
.video-placeholder-small {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 8px;
  background: #111927;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-cover {
  position: relative;
  cursor: pointer;
}

.youtube-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.youtube-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 25, 39, 0.08), rgba(17, 25, 39, 0.36));
}

.youtube-cover button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 50%;
  color: #111927;
  background: var(--gold);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
  font-size: 0;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.youtube-cover button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #111927;
  transform: translate(-50%, -50%);
}

.video-placeholder-small {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 900;
}

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

.program-list {
  display: grid;
  gap: 18px;
}

.program-list article {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(13, 35, 63, 0.07);
}

.program-list span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}

.resource-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(13, 35, 63, 0.07);
}

.resource-panel p {
  max-width: 760px;
  color: var(--muted);
}

.resource-drive-link[aria-disabled="true"] {
  pointer-events: none;
  color: var(--ink);
  background: #d9e6f5;
}

.news-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--deep-blue);
  font-weight: 900;
}

.event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.event-feature-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(13, 35, 63, 0.07);
}

.event-feature-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--deep-blue);
  font-weight: 900;
}

.event-feature-card p {
  color: var(--muted);
}

.signature-event-grid {
  margin-bottom: 18px;
}

.signature-event-card {
  border-color: var(--gold);
  box-shadow: 0 18px 45px rgba(242, 193, 78, 0.2);
}

.event-type-grid {
  margin-top: 18px;
}

.anniversary-hero {
  background: linear-gradient(125deg, #f8fbff, #eaf4ff 50%, #fff1f1);
}

.anniversary-overview {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 18px;
}

.anniversary-overview article,
.sponsor-placeholder {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(13, 35, 63, 0.07);
}

.sponsor-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  color: var(--muted);
  font-weight: 900;
}

.event-list span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-weight: 800;
}

.social-news-section {
  background: #fff;
}

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

.social-feed-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 10px 25px rgba(13, 35, 63, 0.07);
}

.social-feed-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.social-feed-heading h3 {
  margin-bottom: 0;
}

.social-feed-card iframe {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  background: #fff;
}

.newhana-section {
  background: #fff;
}

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

.article-list article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.article-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-list h3 {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.join-hero {
  background: linear-gradient(125deg, var(--deep-blue), var(--blue) 62%, var(--red));
  color: #fff;
}

.join-hero h1,
.join-hero p:not(.eyebrow) {
  color: #fff;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 16px;
}

.member-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(13, 35, 63, 0.07);
}

.member-card.featured {
  border-color: var(--red);
  box-shadow: 0 18px 45px rgba(217, 31, 42, 0.16);
}

.member-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 1.22rem;
}

.member-card ul {
  flex: 1;
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--muted);
}

.member-actions {
  display: grid;
  gap: 10px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #111927;
  color: #fff;
}

.site-footer p {
  max-width: 430px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-content: flex-start;
  justify-content: flex-end;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.last {
  padding-bottom: clamp(70px, 8vw, 110px);
}

@media (max-width: 1060px) {
  .card-grid.four,
  .chapter-directory,
  .journey-gallery,
  .membership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-grid,
  .photo-band,
  .story-timeline,
  .video-grid,
  .social-feed-grid,
  .article-list,
  .card-grid.three,
  .framework-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-showcase {
    grid-template-columns: 1fr;
  }

  .gallery-preview {
    max-width: 420px;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .brand small {
    white-space: normal;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: 80px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    justify-content: center;
  }

  .hero,
  .split-section,
  .two-col,
  .leader-feature,
  .anniversary-overview {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    justify-self: stretch;
  }

  .join-strip,
  .anniversary-feature,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .anniversary-actions {
    justify-content: flex-start;
  }

  .leader-photo {
    width: 180px;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .impact-grid,
  .photo-band,
  .story-timeline,
  .voice-grid,
  .event-feature-grid,
  .card-grid.four,
  .card-grid.three,
  .chapter-directory,
  .journey-gallery,
  .video-grid,
  .social-feed-grid,
  .article-list,
  .framework-grid,
  .membership-grid {
    grid-template-columns: 1fr;
  }

  .program-list article,
  .research-list article {
    grid-template-columns: 1fr;
  }

  .resource-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .actions,
  .button {
    width: 100%;
  }

  .member-card {
    min-height: 0;
  }
}
