/* How you can help */
.lp-help-wrap {
  padding: 40px 0 90px;
}

.lp-help-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2.5rem;
  align-items: start;
}

.lp-help-main {
  min-width: 0;
}

.lp-help-intro {
  margin-bottom: 2.5rem;
}

.lp-help-intro h2 {
  font-family: "Lexend", sans-serif;
  color: var(--leonard-deep, #0a3d3a);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin: 0 0 1rem;
}

.lp-help-intro p {
  color: #4a5c59;
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 0.9rem;
  max-width: 70ch;
}

.lp-help-ways {
  display: grid;
  gap: 1.35rem;
  margin-bottom: 2.75rem;
}

.lp-help-way {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1.4rem;
  align-items: stretch;
  background: #fff;
  border: 1px solid #dce8e6;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 12px 32px rgba(10, 61, 58, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-help-way:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10, 61, 58, 0.12);
}

.lp-help-way > div:last-child {
  padding: 0.65rem 0.85rem 0.85rem 0;
}

/* Animated image panels */
.lp-help-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 200px;
  background: #0a3d3a;
}

.lp-help-media img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

.lp-help-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 61, 58, 0.15), rgba(10, 61, 58, 0.45));
  pointer-events: none;
}

.lp-help-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(26, 122, 109, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.lp-help-badge.gold {
  background: rgba(201, 162, 39, 0.95);
}

.lp-help-badge.deep {
  background: rgba(10, 61, 58, 0.95);
}

.lp-help-badge svg {
  width: 34px;
  height: 34px;
}

/* Float animation — Equipment */
.anim-float img {
  animation: helpFloat 5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes helpFloat {
  0%, 100% { transform: scale(1.05) translateY(0); }
  50% { transform: scale(1.12) translateY(-6px); }
}

.pulse-ring {
  transform-origin: 32px 32px;
  animation: ringPulse 2s ease-out infinite;
}

@keyframes ringPulse {
  0% { opacity: 0.9; transform: scale(0.85); }
  70% { opacity: 0; transform: scale(1.15); }
  100% { opacity: 0; transform: scale(1.2); }
}

.heartbeat {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: drawBeat 2.2s ease-in-out infinite;
}

@keyframes drawBeat {
  0% { stroke-dashoffset: 80; opacity: 0.4; }
  40% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -20; opacity: 0.5; }
}

/* Ken Burns — Personnel */
.anim-kenburns img {
  animation: kenBurns 12s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.14) translate(-4%, -3%); }
}

.orbit {
  animation: bob 2.4s ease-in-out infinite;
}

.orbit.delay {
  animation-delay: 0.35s;
}

.orbit.delay2 {
  animation-delay: 0.7s;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Pulse glow — Funding */
.anim-pulse-glow {
  animation: panelGlow 3s ease-in-out infinite;
}

@keyframes panelGlow {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(232, 197, 71, 0); }
  50% { box-shadow: inset 0 0 40px 0 rgba(232, 197, 71, 0.25); }
}

.anim-pulse-glow img {
  animation: softZoom 6s ease-in-out infinite alternate;
}

@keyframes softZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.heart-beat {
  transform-origin: 32px 36px;
  animation: heartBeat 1.2s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.12); }
  30% { transform: scale(1); }
  45% { transform: scale(1.08); }
}

.coin {
  animation: coinDrop 2.5s ease-in-out infinite;
}

.coin2 {
  animation-delay: 0.4s;
}

@keyframes coinDrop {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50% { transform: translateY(4px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .anim-float img,
  .anim-kenburns img,
  .anim-pulse-glow img,
  .pulse-ring,
  .heartbeat,
  .orbit,
  .heart-beat,
  .coin,
  .anim-pulse-glow {
    animation: none !important;
  }
}

.lp-help-way h3 {
  font-family: "Lexend", sans-serif;
  color: #0a3d3a;
  font-size: 1.25rem;
  margin: 0 0 0.55rem;
}

.lp-help-way p {
  color: #4a5c59;
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

.lp-help-way ul {
  margin: 0.75rem 0 0;
  padding: 0 0 0 1.1rem;
  color: #3d524f;
}

.lp-help-way ul li {
  margin-bottom: 0.35rem;
  line-height: 1.5;
  font-size: 0.95rem;
}

.lp-help-quote {
  background: linear-gradient(135deg, #0a3d3a 0%, #145a52 100%);
  color: #fff;
  border-radius: 16px;
  padding: 2rem 2.1rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.lp-help-quote .mark {
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 0.7;
  color: rgba(232, 197, 71, 0.55);
  margin-bottom: 0.75rem;
}

.lp-help-quote p {
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0 0 1rem;
  max-width: 52ch;
}

.lp-help-quote cite {
  font-style: normal;
  font-weight: 700;
  color: #e8c547;
  font-size: 0.95rem;
}

.lp-help-contact-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1.35rem;
  align-items: center;
  background: #f3f7f6;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #dce8e6;
  margin-bottom: 2rem;
}

.lp-help-contact-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #1a7a6d;
}

.lp-help-contact-card h3 {
  font-family: "Lexend", sans-serif;
  color: #0a3d3a;
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
}

.lp-help-contact-card .role {
  color: #1a7a6d;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.lp-help-contact-card .degrees {
  color: #4a5c59;
  font-size: 0.92rem;
  margin: 0 0 0.85rem;
}

.lp-help-contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #0a3d3a;
  font-weight: 700;
  text-decoration: none;
  margin-right: 1.1rem;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.lp-help-contact-card a:hover {
  color: #1a7a6d;
}

.lp-help-volunteers {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  background: #fff;
  border: 1px solid #dce8e6;
  border-radius: 16px;
  overflow: hidden;
}

.lp-help-volunteers .copy {
  padding: 1.75rem 1.6rem;
}

.lp-help-volunteers h3 {
  font-family: "Lexend", sans-serif;
  color: #0a3d3a;
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
}

.lp-help-volunteers p {
  color: #4a5c59;
  margin: 0 0 1.15rem;
  line-height: 1.65;
}

.lp-help-volunteers img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.lp-help-side {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 991px) {
  .lp-help-layout {
    grid-template-columns: 1fr;
  }

  .lp-help-side {
    position: static;
  }

  .lp-help-volunteers {
    grid-template-columns: 1fr;
  }

  .lp-help-volunteers img {
    min-height: 200px;
    max-height: 240px;
  }
}

@media (max-width: 767px) {
  .lp-help-way {
    grid-template-columns: 1fr;
  }

  .lp-help-media,
  .lp-help-media img {
    min-height: 180px;
  }

  .lp-help-way > div:last-child {
    padding: 0.35rem 0.35rem 0.5rem;
  }
}

@media (max-width: 640px) {
  .lp-help-contact-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lp-help-contact-card img {
    margin: 0 auto;
  }

  .lp-help-contact-card a {
    justify-content: center;
  }
}
