.home-page{
  min-height:100vh;
}
.home-header{
  border-bottom:0;
}
.home-header .pgk-header{
  padding:34px 0 12px;
}
.home-title strong{
  font-size:clamp(30px,5vw,45px);
}
.home-intro{
  padding:18px 0 24px;
}
.home-intro-grid{
  display:grid;
  grid-template-columns:210px minmax(0,1fr);
  gap:38px;
  align-items:center;
  max-width:820px;
}
.church-photo{
  margin:0;
  background:#fff;
  border:1px solid var(--line);
  padding:7px;
  box-shadow:var(--shadow);
}
.church-photo img{
  width:100%;
}
.home-copy h1{
  margin:0 0 12px;
  font-size:clamp(30px,5vw,45px);
  font-weight:500;
}
.home-lead{
  margin:0 0 12px;
  color:#304e61;
  font:19px/1.6 Georgia,"Times New Roman",serif;
}
.home-copy p:last-child{
  max-width:610px;
}
.home-choices{
  padding:22px 0 30px;
}
.choice-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  max-width:900px;
}
.choice-card{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:15px;
  align-items:center;
  min-height:150px;
  padding:24px;
  color:var(--ink);
  background:rgba(255,255,255,.55);
  border:1px solid var(--line);
  border-radius:7px;
  box-shadow:var(--shadow);
  text-decoration:none;
}
.choice-card:hover{
  background:rgba(255,255,255,.78);
  border-color:#8fbdd6;
}
.choice-number{
  align-self:start;
  color:#799aae;
  font:13px/1 Arial,Helvetica,sans-serif;
}
.choice-text{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.choice-text strong{
  color:var(--blue-dark);
  font:500 24px/1.22 Georgia,"Times New Roman",serif;
}
.choice-text span{
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
.choice-arrow{
  color:var(--blue);
  font-size:26px;
}
.home-church{
  padding:4px 0 48px;
}
.quiet-panel{
  max-width:900px;
  padding:23px 26px;
  background:rgba(255,255,255,.34);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.quiet-panel h2{
  margin:0 0 10px;
  font-size:25px;
  font-weight:500;
}
.quiet-panel p{
  max-width:680px;
}
.home-footer{
  margin-top:0;
  background:transparent;
}
.home-footer .wrap{
  max-width:900px;
  border-top:1px solid var(--line);
  padding:24px 0 34px;
}
.home-footer p{
  margin:5px 0;
}
.home-footer a{
  color:var(--blue);
}
.site-credit{
  margin-top:16px!important;
  opacity:.82;
}
@media (max-width:720px){
  .home-header .pgk-header{
    padding-top:25px;
  }
  .home-intro-grid{
    grid-template-columns:1fr;
    gap:22px;
    text-align:center;
  }
  .church-photo{
    width:min(205px,58vw);
    justify-self:center;
  }
  .home-copy p{
    margin-left:auto;
    margin-right:auto;
  }
  .choice-grid{
    grid-template-columns:1fr;
  }
  .choice-card{
    min-height:125px;
  }
}
@media (max-width:480px){
  .home-intro{
    padding-top:10px;
  }
  .choice-card{
    grid-template-columns:1fr auto;
    gap:10px;
    padding:19px 17px;
  }
  .choice-number{
    display:none;
  }
  .choice-text strong{
    font-size:21px;
  }
  .quiet-panel{
    padding:20px 16px;
  }
}