.cover-page{
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: grid;
  place-items: center;
  background-image: var(--cover-img, none);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cover-overlay{
  position: absolute;
  inset: 0;
  background: rgba(82, 110, 87, 0.6);
}
.cover-content{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 24px;
  color: #2a2a2a;
}
.cover-logo{
  width: 220px;
  height: 220px;
  object-fit: contain;
  justify-items: center;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.25));
}

.cover-cta{
  margin-top: 28px;
  background: var(--green, #748f69);
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
  font-weight: 700;
  transition: transform .08s ease, filter .2s ease, background .2s ease;
}
.cover-cta:hover{ 
  filter: brightness(1.05); 
}
.cover-cta:active{ 
  transform: translateY(1px) scale(0.99);
}

@media (max-width: 400px){
  .cover-title{ letter-spacing: 2px; }
}
