
:root{
  --burgundy:#641f24;
  --burgundy-dark:#3f1115;
  --olive:#9ca446;
  --cream:#f7f2e9;
  --ink:#28221f;
  --muted:#6c625d;
  --white:#ffffff;
  --shadow:0 14px 36px rgba(45,29,24,.12);
  --radius:18px;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:#fff;
  font-family:Arial, Helvetica, sans-serif;
  line-height:1.6;
}
img{max-width:100%;display:block}
a{color:inherit}
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid rgba(100,31,36,.12);
  backdrop-filter:blur(10px);
}
.nav-wrap{
  width:min(var(--max),calc(100% - 32px));
  margin:auto;
  min-height:86px;
  display:flex;
  align-items:center;
  gap:24px;
}
.logo-link{display:flex;align-items:center;margin-right:auto}
.logo-link img{width:260px;max-height:72px;object-fit:contain;object-position:left center}
nav{display:flex;gap:18px;align-items:center;flex-wrap:wrap;justify-content:flex-end}
nav a{
  text-decoration:none;
  font-weight:700;
  font-size:.95rem;
  padding:10px 4px;
  border-bottom:3px solid transparent;
}
nav a:hover, nav a.active{color:var(--burgundy);border-bottom-color:var(--olive)}
.construction{
  background:#f3dfaa;
  color:#4a3410;
  text-align:center;
  padding:9px 18px;
  font-weight:700;
  font-size:.93rem;
}
.hero{
  min-height:620px;
  display:grid;
  place-items:center;
  position:relative;
  background:
    linear-gradient(90deg,rgba(35,12,13,.72),rgba(35,12,13,.30)),
    url("images/hero-church.jpg") center/cover no-repeat;
  color:white;
}
.hero-inner{
  width:min(var(--max),calc(100% - 40px));
  padding:100px 0;
}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.17em;
  font-weight:800;
  color:#f3e7bd;
  font-size:.85rem;
}
.hero h1{
  font-family:Georgia,serif;
  max-width:780px;
  font-size:clamp(2.7rem,6vw,5.7rem);
  line-height:1.04;
  margin:.25em 0;
}
.hero p{font-size:clamp(1.05rem,2vw,1.35rem);max-width:720px}
.button-row{display:flex;gap:14px;flex-wrap:wrap;margin-top:30px}
.button{
  display:inline-block;
  padding:13px 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  background:var(--olive);
  color:#201b11;
}
.button.alt{background:transparent;color:white;border:2px solid rgba(255,255,255,.75)}
main section{padding:76px 0}
.container{width:min(var(--max),calc(100% - 40px));margin:auto}
.section-heading{max-width:760px;margin-bottom:30px}
.section-heading h2{
  font-family:Georgia,serif;
  font-size:clamp(2rem,4vw,3.35rem);
  color:var(--burgundy);
  margin:0 0 10px;
}
.section-heading p{color:var(--muted);font-size:1.08rem}
.mission-grid,.card-grid,.info-grid,.leader-grid{
  display:grid;
  gap:22px;
}
.mission-grid{grid-template-columns:repeat(3,1fr)}
.mission-card,.card,.info-card,.leader-card{
  border-radius:var(--radius);
  overflow:hidden;
  background:white;
  box-shadow:var(--shadow);
}
.mission-card img,.card img{height:240px;width:100%;object-fit:cover}
.mission-card .body,.card .body,.info-card,.leader-card{padding:24px}
.mission-card h3,.card h3{font-family:Georgia,serif;color:var(--burgundy);font-size:1.6rem;margin:0 0 8px}
.band{background:var(--cream)}
.schedule{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:center;
}
.schedule-photo{border-radius:var(--radius);box-shadow:var(--shadow)}
.times{display:grid;gap:14px}
.time-row{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:16px 0;
  border-bottom:1px solid rgba(100,31,36,.18);
}
.time-row strong{color:var(--burgundy)}
.page-hero{
  min-height:380px;
  display:grid;
  align-items:end;
  color:#fff;
  background:
    linear-gradient(90deg,rgba(35,12,13,.78),rgba(35,12,13,.32)),
    var(--page-image) center/cover no-repeat;
}
.page-hero .container{padding:90px 0 48px}
.page-hero h1{font-family:Georgia,serif;font-size:clamp(2.7rem,6vw,5rem);margin:0}
.page-hero p{font-size:1.2rem;max-width:700px}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:34px;align-items:start}
.prose h2,.prose h3{font-family:Georgia,serif;color:var(--burgundy)}
.prose h2{font-size:2.2rem}
.prose h3{font-size:1.45rem;margin-top:1.7em}
.placeholder{
  border:2px dashed rgba(100,31,36,.35);
  background:#fff8f2;
  border-radius:14px;
  padding:18px;
  color:#75584e;
}
.card-grid{grid-template-columns:repeat(3,1fr)}
.info-grid{grid-template-columns:repeat(2,1fr)}
.leader-grid{grid-template-columns:repeat(3,1fr)}
.leader-card strong{display:block;color:var(--burgundy)}
.contact-list{list-style:none;padding:0}
.contact-list li{margin:.7em 0}
.site-footer{
  background:var(--burgundy-dark);
  color:#f5e8e5;
  padding:54px 0 30px;
}
.footer-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:35px}
.site-footer img{width:250px;filter:brightness(0) invert(1);opacity:.95}
.site-footer a{color:white}
.footer-bottom{margin-top:36px;padding-top:20px;border-top:1px solid rgba(255,255,255,.18);font-size:.9rem;color:#dbc7c4}
.small{font-size:.92rem;color:var(--muted)}
@media(max-width:900px){
  .nav-wrap{align-items:flex-start;padding:14px 0;flex-direction:column}
  .logo-link img{width:220px}
  nav{justify-content:flex-start;gap:10px 16px}
  .mission-grid,.card-grid,.leader-grid{grid-template-columns:1fr 1fr}
  .schedule,.two-col,.footer-grid{grid-template-columns:1fr}
}
@media(max-width:600px){
  .hero{min-height:560px}
  .mission-grid,.card-grid,.info-grid,.leader-grid{grid-template-columns:1fr}
  nav a{font-size:.88rem}
  main section{padding:56px 0}
}

/* Prototype refinements requested August 4, 2026 */
.nav-wrap{min-height:112px}
.logo-link img{width:350px;max-height:96px}
.footer-logo-panel{display:inline-block;background:#efe4d2;border-radius:999px;padding:14px 24px;margin-bottom:10px}
.site-footer .footer-logo-panel img{width:250px;filter:none;opacity:1}
.ministry-image{width:100%;height:190px;object-fit:contain;border-radius:12px;margin-bottom:18px;background:#fff}
.placeholder-logo{display:grid;place-items:center;border:2px dashed rgba(100,31,36,.35);color:var(--muted);font-weight:700}
.leadership-heading{font-family:Georgia,serif;color:var(--burgundy);font-size:1.7rem;margin:42px 0 16px}
.action-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px;margin-top:30px}
.action-card{display:flex;flex-direction:column;gap:5px;text-decoration:none;background:white;border-radius:var(--radius);padding:24px;box-shadow:var(--shadow);border-left:6px solid var(--olive)}
.action-card strong{color:var(--burgundy);font-size:1.2rem}
.action-card span{color:var(--muted)}
@media(max-width:900px){.logo-link img{width:290px}.action-grid{grid-template-columns:1fr}}

/* Interior-page banner using the historic church drawing */
.page-hero.drawing-hero{
  min-height:360px;
  color:var(--burgundy-dark);
  background:
    linear-gradient(90deg,rgba(247,242,233,.98) 0%,rgba(247,242,233,.88) 38%,rgba(247,242,233,.30) 72%,rgba(247,242,233,.12) 100%),
    var(--page-image) center right/cover no-repeat;
  border-bottom:5px solid var(--olive);
}
.page-hero.drawing-hero .eyebrow{color:var(--olive);text-shadow:none}
.page-hero.drawing-hero h1,
.page-hero.drawing-hero p{max-width:620px;text-shadow:0 1px 0 rgba(255,255,255,.8)}
@media(max-width:700px){
  .page-hero.drawing-hero{
    min-height:320px;
    background:
      linear-gradient(rgba(247,242,233,.88),rgba(247,242,233,.88)),
      var(--page-image) center/cover no-repeat;
  }
}


/* Review refinements — August 4, 2026, evening */
.nav-wrap{min-height:138px}
.logo-link img{width:430px;max-height:122px}
.page-hero.drawing-hero{
  min-height:390px;
  background:
    linear-gradient(90deg,rgba(247,242,233,.99) 0%,rgba(247,242,233,.91) 34%,rgba(247,242,233,.18) 73%,rgba(247,242,233,.05) 100%),
    var(--page-image) center right/cover no-repeat;
}
.contact-form{display:grid;gap:18px;background:var(--cream);padding:28px;border-radius:var(--radius);box-shadow:var(--shadow)}
.contact-form fieldset{border:0;padding:0;margin:0;display:grid;gap:12px}
.contact-form legend{font-family:Georgia,serif;color:var(--burgundy);font-size:1.35rem;font-weight:700;margin-bottom:8px}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.contact-form label{display:grid;gap:6px;font-weight:700;color:var(--burgundy-dark)}
.contact-form input,.contact-form select,.contact-form textarea{width:100%;font:inherit;padding:12px 13px;border:1px solid rgba(100,31,36,.28);border-radius:10px;background:#fff;color:var(--ink)}
.contact-form textarea{min-height:140px;resize:vertical}
.choice-row{display:flex;gap:18px;flex-wrap:wrap}
.choice-row label{display:flex;align-items:center;gap:7px;color:var(--ink);font-weight:600}
.choice-row input{width:auto}
.form-note{font-size:.92rem;color:var(--muted)}
.form-status{min-height:1.4em;font-weight:700;color:var(--burgundy)}
@media(max-width:900px){.logo-link img{width:350px}.nav-wrap{min-height:120px}}
@media(max-width:700px){.form-grid{grid-template-columns:1fr}.logo-link img{width:300px;max-height:100px}}


/* Final static review corrections — visible logo and interior drawing banner */
.nav-wrap{
  min-height:150px;
  width:min(1320px,calc(100% - 32px));
}
.logo-link{
  flex:0 0 auto;
  padding:10px 0;
}
.logo-link img{
  width:390px;
  height:auto;
  max-height:125px;
  object-fit:contain;
  object-position:left center;
}
.page-hero.drawing-hero{
  position:relative;
  overflow:hidden;
  min-height:330px;
  color:var(--burgundy-dark);
  background:linear-gradient(90deg,#f7f2e9 0%,#f7f2e9 46%,rgba(247,242,233,.90) 62%,rgba(247,242,233,.58) 100%);
  border-bottom:5px solid var(--olive);
}
.page-hero.drawing-hero::after{
  content:"";
  position:absolute;
  z-index:0;
  inset:18px 0 0 42%;
  background-image:var(--page-image);
  background-repeat:no-repeat;
  background-position:right bottom;
  background-size:contain;
  opacity:.88;
  pointer-events:none;
}
.page-hero.drawing-hero .container{
  position:relative;
  z-index:1;
  padding:76px 0 42px;
}
.page-hero.drawing-hero h1,
.page-hero.drawing-hero p,
.page-hero.drawing-hero .eyebrow{position:relative;z-index:2}
.contact-left-photo{margin-top:24px;width:100%;max-width:520px}
@media(max-width:900px){
  .nav-wrap{min-height:130px}
  .logo-link img{width:330px;max-height:105px}
  .page-hero.drawing-hero::after{inset:35px -8% 0 38%;opacity:.55}
}
@media(max-width:700px){
  .logo-link img{width:285px;max-height:92px}
  .page-hero.drawing-hero{min-height:300px}
  .page-hero.drawing-hero::after{inset:90px -18% 0 8%;opacity:.30}
}


/* Hugo conversion: reliable interior-page drawing banner */
.page-hero.drawing-hero{position:relative;overflow:hidden;background:linear-gradient(90deg,#f7f2e9 0%,#f7f2e9 47%,rgba(247,242,233,.82) 66%,rgba(247,242,233,.26) 100%);}
.page-hero-copy{position:relative;z-index:2;}
.page-hero-drawing{position:absolute;z-index:1;right:0;top:0;width:58%;height:100%;object-fit:cover;object-position:center;opacity:.92;}
@media(max-width:700px){.page-hero-drawing{width:100%;opacity:.20}.page-hero.drawing-hero{background:#f7f2e9}.page-hero-copy{z-index:2}}

/* Banner and footer refinements — August 4, 2026 */
.page-hero.drawing-hero::after{
  display:none;
}
.page-hero-drawing{
  right:-4%;
  top:0;
  width:52%;
  height:100%;
  object-fit:contain;
  object-position:right center;
  opacity:.92;
}
.footer-logo-panel{
  padding:20px 36px;
  overflow:visible;
}
.site-footer .footer-logo-panel img{
  width:275px;
  height:auto;
  max-width:none;
  display:block;
}
@media(max-width:900px){
  .page-hero-drawing{
    right:-7%;
    width:55%;
  }
  .site-footer .footer-logo-panel img{width:250px;}
}
@media(max-width:700px){
  .page-hero-drawing{
    right:-15%;
    width:115%;
    object-fit:contain;
    object-position:right center;
    opacity:.18;
  }
  .footer-logo-panel{padding:16px 28px;}
  .site-footer .footer-logo-panel img{width:225px;}
}

/* August 4 final content-image refinements */
.site-footer .footer-logo-panel img{width:320px;max-width:100%;height:auto;object-fit:contain;}
.footer-logo-panel{padding:10px 14px;background:transparent;border-radius:0;}
/* Final test-group refinements — August 4, 2026 */

/* Footer logo: remove the surrounding panel and display the oval artwork larger */
.footer-logo-panel{
  display:block;
  width:100%;
  max-width:390px;
  padding:0;
  margin:0 0 18px 0;
  background:transparent;
  border-radius:0;
  overflow:visible;
}

.site-footer .footer-logo-panel img{
  display:block;
  width:100%;
  max-width:390px;
  height:auto;
  filter:none;
  opacity:1;
}

/* New Here parking map: give the image more room and preserve its full proportions */
.parking-section{
  grid-template-columns:.8fr 1.2fr;
  align-items:center;
}

.parking-map{
  width:100%;
  max-width:none;
  height:auto;
  object-fit:contain;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* Interior banner drawing */
.page-hero-drawing{
  right:0;
  width:48%;
  object-fit:contain;
  object-position:right center;
}

@media(max-width:900px){
  .parking-section{
    grid-template-columns:1fr;
  }

  .page-hero-drawing{
    right:-2%;
    width:58%;
  }
}

@media(max-width:700px){
  .page-hero-drawing{
    right:0;
    width:100%;
    object-position:center;
  }
}

/* Final footer-logo adjustment */
.footer-logo-panel{
  display:block;
  width:100%;
  max-width:420px;
  margin:0 0 18px 0;
  padding:0;
  background:transparent;
  border-radius:0;
  overflow:visible;
}

.site-footer .footer-logo-panel img{
  display:block;
  width:100%;
  max-width:420px;
  height:auto;
  object-fit:contain;
  filter:none;
  opacity:1;
}

/* Pastor welcome section */
.pastor-welcome-section{
  padding:70px 0;
  background:#f7f2e9;
}

.pastor-welcome-card{
  display:grid;
  grid-template-columns:minmax(0, 2fr) 340px;
  gap:48px;
  align-items:center;
  max-width:1180px;
  margin:0 auto;
  padding:48px;
  background:#fff;
  border-radius:18px;
  box-shadow:var(--shadow);
}

.pastor-welcome-text h2{
  margin-top:0;
  font-family:Georgia, serif;
  color:var(--burgundy);
  font-size:2.4rem;
}

.pastor-welcome-text h3{
  color:var(--burgundy);
  font-size:1.35rem;
}

.pastor-welcome-text p{
  line-height:1.75;
}

.pastor-signature{
  margin-top:26px;
  color:var(--burgundy);
  font-size:1.15rem;
}

.pastor-portrait{
  display:flex;
  justify-content:center;
  align-items:center;
}

.pastor-portrait img{
  display:block;
  width:300px;
  height:300px;
  border-radius:50%;
  object-fit:cover;
  object-position:center 22%;
  border:8px solid #f7f2e9;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}

@media(max-width:900px){
  .pastor-welcome-card{
    grid-template-columns:1fr;
    padding:34px;
  }

  .pastor-portrait{
    grid-row:1;
  }

  .pastor-portrait img{
    width:240px;
    height:240px;
  }
}

/* Worship Through Music photo gallery */
.music-photo-gallery{
  display:grid;
  gap:14px;
  align-self:start;
}

.music-photo-gallery img{
  width:100%;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.music-photo-gallery .music-photo-featured{
  grid-column:1 / -1;
  height:430px;
  object-fit:cover;
  object-position:center 72%;
}

.music-photo-gallery .music-photo-soloist{
  height:auto;
}

.music-signature{
  display:flex;
  align-items:center;
  gap:20px;
  margin-top:24px;
}

.music-signature img{
  flex:0 0 136px;
  width:136px;
  height:136px;
  border-radius:50%;
  object-fit:cover;
  object-position:72% center;
  border:6px solid #fff;
  box-shadow:var(--shadow);
}

.music-signature p{
  margin:.3em 0;
}

@media(max-width:900px){
  .music-photo-gallery{
    width:min(100%,760px);
    margin:0 auto;
  }
}

@media(max-width:600px){
  .music-photo-gallery .music-photo-featured{
    grid-column:auto;
    height:340px;
  }

  .music-signature{
    align-items:flex-start;
    flex-direction:column;
  }
}
