* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #e83f7d;
  --primary-deep: #9b174a;
  --primary-soft: #fff0f6;
  --primary-tint: #ffd7e6;
  --rose-shadow: rgba(232, 63, 125, 0.18);
  --ink: #231721;
  --muted: #6e5f68;
  --line: rgba(155, 23, 74, 0.13);
  --surface: rgba(255, 255, 255, 0.9);
  --light-color: #fff7fb;
  --dark-color: #191118;
  --secondary-color: #ffe4ee;
  --radius: 18px;
  --shadow: 0 22px 60px rgba(77, 31, 54, 0.12);
  --shadow-soft: 0 14px 34px rgba(77, 31, 54, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Alegreya", Georgia, serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 215, 230, 0.75), transparent 26rem),
    radial-gradient(circle at 92% 4%, rgba(255, 239, 246, 0.9), transparent 24rem),
    linear-gradient(180deg, #fff 0%, #fff8fb 38%, #fff 100%);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container,
.container-sm {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
}

.container-sm {
  max-width: 820px;
}

#content {
  min-height: 60vh;
}

#content.page-enter {
  animation: pageEnter 0.45s ease both;
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 24px rgba(80, 38, 58, 0.08);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(80, 38, 58, 0.14);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), #f26aa0);
  box-shadow: 0 16px 32px var(--rose-shadow);
}

.btn-primary:hover,
.btn-primary:focus {
  color: #fff;
  background: linear-gradient(135deg, #d93472, #f15f98);
}

.btn-dark {
  color: #fff;
  background: var(--dark-color);
}

.btn-block {
  width: 100%;
}

.text-xl {
  margin: 36px 0 18px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(74, 34, 54, 0.07);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-logo {
  width: 58px;
  height: auto;
  filter: drop-shadow(0 9px 14px rgba(232, 63, 125, 0.2));
}

.brand-name {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1;
}

.main-menu ul {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  position: relative;
  display: block;
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 1.03rem;
  font-weight: 750;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: var(--primary-deep);
  background: var(--primary-soft);
  transform: translateY(-1px);
}

.navbar ul li a.active::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 7px;
  left: 15px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary-color);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--primary-deep);
  background: #fff;
  box-shadow: 0 12px 26px rgba(80, 38, 58, 0.09);
}

/* Home hero carousel */
.carousel-section {
  position: relative;
  padding: 18px 0 0;
}

#carouselExampleIndicators {
  width: min(1180px, calc(100% - 40px));
  height: clamp(560px, 72vh, 760px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  background: var(--primary-soft);
  box-shadow: var(--shadow);
}

#carouselExampleIndicators .carousel-inner,
#carouselExampleIndicators .carousel-item {
  height: 100%;
}

#carouselExampleIndicators .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.custom-caption {
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(28px, 6vw, 68px);
  text-align: left;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(0, 0, 0, 0.84) 42%,
    rgba(0, 0, 0, 0.62) 70%,
    rgba(0, 0, 0, 0.32) 90%,
    rgba(0, 0, 0, 0) 100%
  );
}

.custom-caption h1,
.custom-caption p {
  max-width: 710px;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}

.custom-caption h1 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(2.15rem, 5vw, 4.45rem);
  font-weight: 900;
  line-height: 1;
}

.custom-caption p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.12rem, 2.3vw, 1.45rem);
}

#carouselExampleIndicators .carousel-control-prev,
#carouselExampleIndicators .carousel-control-next {
  top: 50%;
  bottom: auto;
  width: 54px;
  height: 54px;
  margin: 0 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.hero {
  padding: 72px 0;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-heading {
  margin: 0 auto 16px;
  padding: 0;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
}

.hero-text {
  max-width: 850px;
  margin: 0 auto;
  padding: 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.85;
}

.impact,
.about-team {
  position: relative;
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(255, 240, 246, 0.95), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 10% 20%, rgba(232, 63, 125, 0.14), transparent 22rem);
}

.impact-title,
.about-heading,
.events-calendar-header h2,
.past-events-header h2,
.faq-header h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

.impact-title {
  margin-bottom: 34px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.impact-card {
  position: relative;
  min-height: 172px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.impact-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: rgba(232, 63, 125, 0.1);
}

.impact-card:hover,
.mission-point:hover,
.team-member-card:hover,
.past-event-card:hover,
.legend-block:hover,
.involvement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(77, 31, 54, 0.16);
}

.impact-header {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.impact-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.impact-number {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--primary-deep);
  font-size: clamp(2.2rem, 5vw, 3.45rem);
  font-weight: 900;
  line-height: 1;
}

.faq-section,
.events-calendar-section,
.mission-content,
.chapter-map-section,
.past-events-section,
.get-involved-section {
  padding: 86px 0;
  background: rgba(255, 255, 255, 0.76);
}

.faq-header p,
.events-calendar-header p,
.past-events-header p,
.mission-description,
.mission-bottom-text,
.chapter-map-content p,
.get-involved-intro {
  color: var(--muted);
}

.faq-header p,
.events-calendar-header p,
.past-events-header p,
.get-involved-intro {
  max-width: 740px;
  margin: 0 auto 38px;
  font-size: 1.08rem;
  line-height: 1.75;
  text-align: center;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(77, 31, 54, 0.08);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 0;
  color: var(--ink);
  background: #fff;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.22s ease,
    color 0.22s ease;
}

.faq-question:hover,
.faq-item.active .faq-question {
  color: var(--primary-deep);
  background: var(--primary-soft);
}

.faq-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--primary-color);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.28s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}

.faq-answer p {
  margin: 0;
  padding: 4px 0 22px;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item.active .faq-answer {
  padding: 0 24px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Shared image heroes */
.mission-hero,
.community-events-hero,
.chapter-start-hero,
.get-involved-hero {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  height: clamp(300px, 38vw, 460px);
  margin: 18px auto 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.mission-hero-img,
.community-events-hero-img,
.chapter-start-hero-img,
.get-involved-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-hero-overlay,
.community-events-hero-overlay,
.chapter-start-hero-overlay,
.get-involved-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 6vw, 68px);
  background:
    linear-gradient(rgba(58, 20, 42, 0.62), rgba(58, 20, 42, 0.62)),
    linear-gradient(to top, rgba(0, 0, 0, 0.42), transparent 70%);
}

.mission-hero-overlay h1,
.community-events-hero-overlay h1,
.chapter-start-hero-overlay h1,
.get-involved-hero-overlay h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 950;
  line-height: 0.95;
  text-align: center;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.mission-description {
  max-width: 950px;
  margin: 0 auto 48px;
  font-size: 1.15rem;
  line-height: 1.9;
  text-align: center;
}

.mission-small-heading {
  margin: 0 0 28px;
  color: var(--primary-deep);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1050px;
  margin: 0 auto 48px;
}

.mission-point,
.team-member-card,
.past-event-card,
.legend-block,
.chapter-map-box,
.involvement-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.mission-point {
  padding: 24px;
}

.mission-point-top {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}

.mission-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--primary-color);
  box-shadow: 0 12px 22px var(--rose-shadow);
  font-size: 1rem;
}

.mission-point-title,
.legend-title,
.team-name,
.past-event-content h3,
.chapter-map-content h2,
.involvement-card h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.15;
}

.mission-point-title {
  font-size: 1.36rem;
}

.mission-point-description {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.mission-bottom-text {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.9;
  text-align: center;
}

.team-list {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  gap: 22px;
}

.team-member-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 26px;
}

.team-photo {
  width: 140px;
  height: 140px;
  overflow: hidden;
  border: 6px solid #fff;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(77, 31, 54, 0.14);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.45rem;
}

.team-role {
  margin: 5px 0 12px;
  color: var(--primary-deep);
  font-size: 1rem;
  font-weight: 850;
}

.team-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

/* Calendar and events */
.calendar-legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto 34px;
}

.legend-block {
  padding: 22px;
}

.legend-title-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px;
}

.legend-title {
  font-size: 1.18rem;
}

.legend-description {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.legend-dot {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(232, 63, 125, 0.12);
}

.drive-dot {
  background: #f25acf;
}

.volunteer-dot {
  background: #7c093b;
}

#community-calendar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.fc .fc-toolbar-title {
  color: var(--ink);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 900;
}

.fc .fc-button {
  border-color: var(--primary-color);
  border-radius: 999px;
  background: var(--primary-color);
  font-weight: 800;
  box-shadow: none;
}

.fc .fc-button:hover,
.fc .fc-button:focus,
.fc .fc-button-primary:not(:disabled).fc-button-active {
  border-color: var(--primary-deep);
  background: var(--primary-deep);
}

.fc .fc-daygrid-event {
  border: 0;
  border-radius: 999px;
  padding: 3px 7px;
  font-size: 0.8rem;
  font-weight: 700;
}

.fc-theme-standard td,
.fc-theme-standard th,
.fc-theme-standard .fc-scrollgrid {
  border-color: rgba(155, 23, 74, 0.12);
}

.past-events-list {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  gap: 24px;
}

.past-event-card {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 20px;
}

.past-event-image {
  height: 210px;
  overflow: hidden;
  border-radius: 14px;
}

.past-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.past-event-card:hover .past-event-image img {
  transform: scale(1.06);
}

.past-event-content h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.past-event-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

/* Chapter */
main#content .gallery-section {
  padding: 42px 20px 44px;
  background: transparent;
}

main#content .gallery-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

main#content .gallery-row img {
  width: 100%;
  height: 230px;
  min-width: 0;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(77, 31, 54, 0.11);
  transition:
    transform 0.28s ease,
    filter 0.28s ease;
}

main#content .gallery-row img:nth-child(even) {
  transform: translateY(18px);
}

main#content .gallery-row img:hover {
  z-index: 2;
  filter: saturate(1.08);
  transform: translateY(-4px) scale(1.03);
}

.chapter-map-section {
  padding-top: 24px;
}

.chapter-map-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: center;
  margin-top: 28px;
}

.chapter-map-box {
  padding: 18px;
  background: #fff;
}

#map,
.google-map-shell {
  width: 100%;
  min-height: 430px;
}

.google-map-shell {
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(rgba(255, 240, 246, 0.82), rgba(255, 240, 246, 0.82)),
    url("images/getInvolvedBanner.png") center / cover;
}

.google-map-frame {
  display: block;
  width: 100%;
  min-height: 430px;
  border: 0;
}

.google-map-placeholder {
  display: grid;
  min-height: 430px;
  place-items: center;
  padding: 34px;
  color: var(--ink);
  text-align: center;
  backdrop-filter: blur(2px);
}

.google-map-placeholder i {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 10px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--primary-color);
  box-shadow: 0 16px 28px var(--rose-shadow);
  font-size: 1.6rem;
}

.google-map-placeholder h3 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 900;
}

.google-map-placeholder p {
  max-width: 460px;
  margin: 0 0 18px;
  color: var(--muted);
}

.chapter-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary-deep);
  background: var(--primary-soft);
  font-weight: 850;
}

.chapter-map-content h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.chapter-map-content p {
  margin-bottom: 15px;
  font-size: 1.06rem;
  line-height: 1.78;
}

.chapter-form-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.chapter-form-card h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1;
}

.chapter-form-card p:not(.chapter-location-badge) {
  margin: 0;
  color: var(--muted);
}

/* Get involved */
.get-involved-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.involvement-card.involvement-card-featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(240px, 0.75fr) minmax(320px, 1.25fr);
  gap: 24px;
  align-items: stretch;
  min-height: 484px;
}

.gfm-widget-frame {
  display: block;
  width: calc(100% + 26px);
  height: 428px;
  min-height: 428px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #fff;
}

.donate-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 428px;
  padding: 8px 4px;
}

.donate-card-copy h3 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.donate-card-copy p {
  font-size: 1.08rem;
}

.donate-widget-panel {
  height: 428px;
  align-self: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(77, 31, 54, 0.08);
}

.donate-card-copy .btn {
  margin-top: auto;
}

.involvement-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 26px;
}

.involvement-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), #ff87b4);
  box-shadow: 0 16px 28px var(--rose-shadow);
  font-size: 1.35rem;
}

.involvement-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.involvement-card p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

.involvement-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Footer */
.site-footer {
  padding: 58px 0 0;
  color: #fff;
  background:
    linear-gradient(135deg, #22131d, #44122b 58%, #7e1846),
    var(--dark-color);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 42px;
}

.footer-left h3,
.footer-center h4,
.footer-right h4 {
  margin-bottom: 10px;
  font-weight: 900;
}

.footer-left p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-center ul {
  margin: 0;
  padding: 0;
}

.footer-center li {
  margin-bottom: 8px;
}

.footer-center a,
.footer-socials a {
  color: rgba(255, 255, 255, 0.74);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-center a:hover,
.footer-socials a:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 12px;
  font-size: 1.35rem;
}

.footer-socials a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.footer-bottom {
  margin-top: 42px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  text-align: center;
}

@media (max-width: 1050px) {
  .main-menu ul {
    gap: 2px;
  }

  .navbar ul li a {
    padding: 10px 11px;
    font-size: 0.98rem;
  }

  .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .get-involved-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .main-menu {
    position: fixed;
    top: 86px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  body.menu-open .main-menu {
    display: block;
  }

  .main-menu ul {
    flex-direction: column;
    align-items: stretch;
  }

  .navbar ul li a {
    padding: 14px 16px;
    font-size: 1.08rem;
  }

  .hero-content,
  .chapter-map-wrapper,
  .chapter-form-card,
  .footer-container,
  .past-event-card,
  .team-member-card {
    grid-template-columns: 1fr;
  }

  .calendar-legend,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  main#content .gallery-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .team-member-card {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container,
  .container-sm,
  #carouselExampleIndicators,
  .mission-hero,
  .community-events-hero,
  .chapter-start-hero,
  .get-involved-hero {
    width: min(100% - 24px, 1180px);
  }

  body {
    font-size: 16px;
  }

  .navbar {
    padding: 10px 0;
  }

  .brand-logo {
    width: 48px;
  }

  .brand-name {
    font-size: 2rem;
  }

  .main-menu {
    top: 72px;
    right: 12px;
    left: 12px;
  }

  #carouselExampleIndicators {
    height: 610px;
    border-radius: 20px;
  }

  .custom-caption {
    padding: 28px 22px;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.84) 48%,
      rgba(0, 0, 0, 0.54) 82%,
      rgba(0, 0, 0, 0.22) 94%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  #carouselExampleIndicators .carousel-control-prev,
  #carouselExampleIndicators .carousel-control-next {
    width: 44px;
    height: 44px;
    margin: 0 10px;
  }

  .hero,
  .impact,
  .about-team,
  .faq-section,
  .events-calendar-section,
  .mission-content,
  .chapter-map-section,
  .past-events-section,
  .get-involved-section {
    padding: 62px 0;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .involvement-card.involvement-card-featured {
    grid-template-columns: 1fr;
  }

  .donate-card-copy {
    min-height: auto;
  }

  .donate-widget-panel,
  .gfm-widget-frame {
    height: 430px;
    min-height: 430px;
  }

  .gfm-widget-frame {
    width: calc(100% + 26px);
  }

  .mission-hero,
  .community-events-hero,
  .chapter-start-hero,
  .get-involved-hero {
    height: 310px;
    border-radius: 20px;
  }

  .mission-hero-overlay,
  .community-events-hero-overlay,
  .chapter-start-hero-overlay,
  .get-involved-hero-overlay {
    padding: 28px 22px;
  }

  main#content .gallery-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  main#content .gallery-row img {
    height: 180px;
  }

  main#content .gallery-row img:nth-child(even) {
    transform: none;
  }

  main#content .gallery-section {
    padding: 34px 12px 34px;
  }

  .chapter-map-section {
    padding-top: 18px;
  }

  .chapter-map-wrapper {
    margin-top: 22px;
    gap: 24px;
  }

  .past-event-image {
    height: 220px;
  }

  #community-calendar {
    padding: 10px;
    border-radius: 16px;
  }

  .google-map-shell,
  .google-map-frame,
  .google-map-placeholder {
    min-height: 300px;
  }

  .chapter-form-card {
    align-items: flex-start;
  }

  .fc .fc-toolbar {
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
