/* =====================================================================
   OPTION B — "Warm Traditional / Editorial"
   Warm paper tones, Source Serif 4 headlines, thin rules, restrained red.
   Heritage-forward ("since 1870"), quiet confidence. No shadows.
   ===================================================================== */

/* ---------- Fonts ---------- */
@font-face { font-family:"Lato"; src:url("../shared/fonts/lato-400.woff2") format("woff2"); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:"Lato"; src:url("../shared/fonts/lato-400i.woff2") format("woff2"); font-weight:400; font-style:italic; font-display:swap; }
@font-face { font-family:"Lato"; src:url("../shared/fonts/lato-700.woff2") format("woff2"); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:"Source Serif 4"; src:url("../shared/fonts/sourceserif-400i.woff2") format("woff2"); font-weight:400; font-style:italic; font-display:swap; }
@font-face { font-family:"Source Serif 4"; src:url("../shared/fonts/sourceserif-600.woff2") format("woff2"); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:"Source Serif 4"; src:url("../shared/fonts/sourceserif-700.woff2") format("woff2"); font-weight:700; font-style:normal; font-display:swap; }

/* ---------- Tokens ---------- */
:root{
  --paper:#FAF7F2;
  --paper-deep:#F1EBE1;
  --ink:#2B2926;
  --red-600:#970000;
  --red-700:#7A0000;
  --gray-700:#54504B;
  --night:#221F1C;
  --cream:#F3ECE0;
  --rule:rgba(43,41,38,.16);

  --bg:var(--paper);
  --text:var(--ink);
  --heading:var(--ink);
  --accent:var(--red-600);

  --wrap:1120px;
  --r:2px;
  --header-h:70px;
  --focus:#970000;

  --h-font:"Source Serif 4",Georgia,serif;
  --b-font:"Lato",system-ui,sans-serif;
}

/* ---------- Reset / base ---------- */
*,*::before,*::after{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;}
html.menu-open{overflow:hidden;}
body{margin:0;font-family:var(--b-font);color:var(--text);background:var(--bg);
  font-size:1.0625rem;line-height:1.72;-webkit-font-smoothing:antialiased;}
img,picture,svg,iframe{display:block;max-width:100%;}
img{height:auto;}
a{color:var(--red-700);}
h1,h2,h3,h4{font-family:var(--h-font);color:var(--heading);line-height:1.14;font-weight:700;margin:0;}
p{margin:0 0 1.1rem;}
p:last-child{margin-bottom:0;}
ul{margin:0;padding:0;list-style:none;}

.wrap{max-width:var(--wrap);margin-inline:auto;padding-inline:clamp(1.25rem,5vw,2.5rem);width:100%;}
.section{padding-block:clamp(3rem,7.5vw,6rem);}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;}
.skip-link{position:absolute;left:1rem;top:-3rem;z-index:100;background:var(--red-600);color:#fff;padding:.6rem 1rem;transition:top .15s;}
.skip-link:focus{top:0;}
:where(a,button,input,summary,[tabindex]):focus-visible{outline:2px solid var(--focus);outline-offset:3px;}

/* ---------- Headings / eyebrow ---------- */
.section-title{font-size:clamp(1.9rem,4vw,3rem);letter-spacing:-.01em;margin-bottom:.4em;}
.section-title--center{text-align:center;}
.section-sub{text-align:center;color:var(--gray-700);font-family:var(--h-font);font-style:italic;font-size:1.25rem;margin:-.3rem 0 2.2rem;}
.eyebrow{font-family:var(--b-font);font-weight:700;text-transform:uppercase;letter-spacing:.22em;
  font-size:.75rem;color:var(--red-600);margin:0 0 .9rem;}
.eyebrow--center{text-align:center;}
.eyebrow--on-dark{color:#e0a3a3;}
.section-title--on-dark{color:var(--cream);}
.eyebrow::before{content:"";display:inline-block;width:1.6rem;height:1px;background:var(--red-600);vertical-align:middle;margin-right:.6rem;transform:translateY(-.15em);}
.eyebrow--center::before{display:none;}

/* ---------- Buttons (rectangular, editorial) ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--b-font);font-weight:700;font-size:.98rem;line-height:1;letter-spacing:.02em;
  padding:.9rem 1.7rem;border-radius:var(--r);border:1.5px solid transparent;
  text-decoration:none;cursor:pointer;transition:background .18s,color .18s,border-color .18s;}
.btn--primary{background:var(--red-600);color:#fff;border-color:var(--red-600);}
.btn--primary:hover{background:var(--red-700);border-color:var(--red-700);}
.btn--ghost{background:transparent;color:var(--red-700);border-color:var(--red-600);}
.btn--ghost:hover{background:var(--red-600);color:#fff;}
.btn--on-dark{background:var(--cream);color:var(--night);border-color:var(--cream);}
.btn--on-dark:hover{background:#fff;}
.btn--sm{padding:.6rem 1.15rem;font-size:.88rem;}
.btn--block{display:flex;width:100%;}

/* ---------- Header ---------- */
.site-header{position:sticky;top:0;z-index:50;background:var(--paper);border-bottom:1px solid var(--rule);min-height:var(--header-h);}
.site-header__inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;min-height:var(--header-h);}
.brand__logo{height:44px;width:auto;}
.nav-desktop{display:none;align-items:center;gap:1.75rem;}
.nav-desktop__list{display:flex;gap:1.5rem;align-items:center;}
.nav-desktop__list a{font-family:var(--b-font);font-weight:700;color:var(--ink);text-decoration:none;font-size:.98rem;letter-spacing:.01em;}
.nav-desktop__list a:hover{color:var(--red-600);}
.menu-btn{display:inline-flex;align-items:center;gap:.5rem;background:none;border:0;cursor:pointer;font-family:var(--b-font);font-weight:700;color:var(--ink);padding:.4rem .2rem;text-transform:uppercase;letter-spacing:.12em;font-size:.8rem;}
.menu-btn__bars{display:inline-flex;flex-direction:column;gap:4px;width:22px;}
.menu-btn__bars span{height:2px;background:var(--ink);transition:.2s;}
.menu-btn[aria-expanded="true"] .menu-btn__bars span:nth-child(1){transform:translateY(6px) rotate(45deg);}
.menu-btn[aria-expanded="true"] .menu-btn__bars span:nth-child(2){opacity:0;}
.menu-btn[aria-expanded="true"] .menu-btn__bars span:nth-child(3){transform:translateY(-6px) rotate(-45deg);}
.nav-mobile{position:fixed;inset:0;top:var(--header-h);background:var(--paper);z-index:45;display:none;overflow-y:auto;padding:1.25rem clamp(1.25rem,5vw,2.5rem) 2.5rem;}
.nav-mobile.is-open{display:block;}
.nav-mobile ul{display:flex;flex-direction:column;}
.nav-mobile li{border-bottom:1px solid var(--rule);}
.nav-mobile a{display:block;padding:1rem .25rem;font-family:var(--h-font);font-weight:700;font-size:1.4rem;color:var(--ink);text-decoration:none;}
.nav-mobile a[aria-current="page"]{color:var(--red-600);}
.nav-mobile .btn{margin-top:1.5rem;}
@media(min-width:900px){.nav-desktop{display:flex;}.menu-btn{display:none;}.nav-mobile{display:none !important;}}

/* ---------- Hero (editorial split) ---------- */
.hero{position:relative;display:grid;background:var(--paper);color:var(--ink);overflow:hidden;border-bottom:1px solid var(--rule);}
.hero::before,.hero::after{display:none !important;}
.hero__media{position:relative;inset:auto;z-index:auto;min-height:260px;}
.hero__media img{width:100%;height:100%;object-fit:cover;}
.hero .hero__inner{max-width:none;margin:0;text-align:left;padding:clamp(2.5rem,6vw,5.5rem) clamp(1.5rem,5vw,4rem);display:flex;align-items:center;}
.hero__content{max-width:600px;}
.hero__kicker{font-family:var(--b-font);font-weight:700;text-transform:uppercase;letter-spacing:.28em;font-size:.8rem;color:var(--red-600);margin:0 0 1.1rem;}
.hero__title{font-size:clamp(2.7rem,6vw,4.6rem);color:var(--ink);margin-bottom:.15em;line-height:1.05;letter-spacing:-.015em;}
.hero__identity{font-family:var(--h-font);font-style:italic;font-size:clamp(1.15rem,2.4vw,1.6rem);color:var(--gray-700);margin:0 0 1.2rem;}
.hero__tagline{font-size:clamp(1.05rem,1.6vw,1.2rem);color:var(--ink);max-width:46ch;margin:0 0 1.8rem;}
.schedule{display:flex;flex-direction:column;gap:.5rem;margin:0 0 1.3rem;border-left:2px solid var(--red-600);padding-left:1.1rem;}
.schedule__row{display:flex;gap:.5rem;flex-wrap:wrap;align-items:baseline;}
.schedule__row dt{font-family:var(--b-font);font-weight:700;color:var(--ink);text-transform:uppercase;letter-spacing:.1em;font-size:.78rem;min-width:6.5rem;}
.schedule__row dd{margin:0;color:var(--gray-700);}
.hero__address{display:inline-flex;align-items:center;gap:.45rem;color:var(--ink);font-weight:700;margin:0 0 1.9rem;}
.hero__address .icon{color:var(--red-600);flex:none;}
.hero__actions{display:flex;gap:.9rem;flex-wrap:wrap;}
@media(min-width:900px){
  .hero{grid-template-columns:1.05fr .95fr;align-items:stretch;}
  .hero__media{order:2;min-height:520px;}
  .hero--sub .hero__media{min-height:420px;}
}

/* ---------- Split sections ---------- */
.split{display:grid;gap:clamp(1.5rem,4vw,3.5rem);align-items:center;}
.split__media img{width:100%;object-fit:cover;aspect-ratio:3/2;border:1px solid var(--rule);
  outline:2px solid var(--red-600);outline-offset:-10px;}
@media(min-width:800px){.split{grid-template-columns:1fr 1fr;}.split--reverse .split__text{order:2;}}

/* ---------- Service times ---------- */
.times-band{background:var(--paper-deep);}
.times-grid{display:grid;gap:0;max-width:800px;margin:0 auto;border-top:2px solid var(--ink);border-bottom:2px solid var(--ink);}
.times-col{padding:1.8rem 1.5rem;}
.times-col+.times-col{border-top:1px solid var(--rule);}
.times-col__day{font-size:1.5rem;color:var(--ink);margin-bottom:.9rem;}
.times-list li{display:flex;justify-content:space-between;gap:1rem;padding:.5rem 0;border-bottom:1px dotted var(--rule);}
.times-list li:last-child{border-bottom:0;}
.times-list__what{font-weight:700;color:var(--ink);}
.times-list__when{color:var(--red-700);font-family:var(--h-font);font-weight:700;white-space:nowrap;}
.times-band__note{text-align:center;margin-top:1.8rem;}
@media(min-width:640px){.times-grid{grid-template-columns:1fr 1fr;}.times-col+.times-col{border-top:0;border-left:1px solid var(--rule);}}

/* ---------- Ministries ---------- */
.ministry-grid{display:grid;gap:0;border-top:1px solid var(--rule);}
.ministry-card{background:transparent;display:flex;flex-direction:column;border-bottom:1px solid var(--rule);padding:1.6rem 0;}
.ministry-card__media{position:relative;margin-bottom:1.1rem;}
.ministry-card__media img:not(.ministry-card__badge){width:100%;aspect-ratio:3/2;object-fit:cover;border:1px solid var(--rule);}
.ministry-card__badge{position:absolute;right:.7rem;bottom:.7rem;width:70px;height:auto;}
.ministry-card__panel{aspect-ratio:3/2;display:grid;place-items:center;background:var(--night);color:var(--cream);margin-bottom:1.1rem;}
.ministry-card__body h3{font-size:1.5rem;color:var(--ink);margin-bottom:.5rem;}
@media(min-width:760px){
  .ministry-grid{grid-template-columns:repeat(3,1fr);gap:0 2.5rem;}
  .ministry-card{border-bottom:0;padding:2rem 0 0;}
}

/* ---------- Serve chips ---------- */
.serve-chips{display:flex;flex-wrap:wrap;gap:.7rem;justify-content:center;max-width:840px;margin:0 auto;}
.serve-chips li{border:1px solid var(--ink);border-radius:var(--r);padding:.65rem 1.35rem;font-family:var(--h-font);font-weight:600;color:var(--ink);font-size:1.05rem;}
.serve__cta{text-align:center;margin-top:2.2rem;}

/* ---------- Sermon series (night band) ---------- */
.series{background:var(--night);color:var(--cream);}
.series .section-sub{color:#bcae9a;}
.series__grid{display:grid;gap:1.8rem;align-items:center;max-width:900px;margin:0 auto;}
.series__art img{width:100%;aspect-ratio:16/9;object-fit:cover;outline:2px solid var(--red-600);outline-offset:-10px;}
.sermon-card{display:block;background:var(--paper);color:var(--ink);text-decoration:none;border:1px solid rgba(255,255,255,.15);}
.sermon-card__thumb{position:relative;}
.sermon-card__thumb img{width:100%;aspect-ratio:16/9;object-fit:cover;}
.sermon-card__play{position:absolute;inset:0;margin:auto;width:58px;height:58px;background:var(--red-600);color:#fff;border-radius:50%;display:grid;place-items:center;}
.sermon-card__latest{position:absolute;top:0;left:0;background:var(--red-600);color:#fff;font-family:var(--b-font);font-weight:700;font-size:.7rem;text-transform:uppercase;letter-spacing:.12em;padding:.35rem .7rem;}
.sermon-card__meta{padding:1.1rem 1.3rem 1.3rem;}
.sermon-card__title{font-size:1.4rem;color:var(--ink);margin-bottom:.3rem;}
.sermon-card__sub{color:var(--red-700);font-weight:700;margin:0 0 .2rem;font-family:var(--b-font);}
.sermon-card__date{color:var(--gray-700);font-size:.9rem;margin:0;}
.series__cta{text-align:center;margin-top:2.2rem;}
@media(min-width:760px){.series__grid{grid-template-columns:1fr 1fr;}}

/* ---------- Testimonials (serif pull quotes) ---------- */
.testimonials{background:var(--paper-deep);}
.quote-grid{display:grid;gap:2.5rem;}
.quote{margin:0;position:relative;padding-top:2.2rem;}
.quote::before{content:"\201C";position:absolute;top:-.7rem;left:-.3rem;font-family:var(--h-font);font-weight:700;font-size:4.5rem;line-height:1;color:var(--red-600);opacity:.6;}
.quote blockquote{margin:0;font-family:var(--h-font);font-size:1.3rem;line-height:1.5;color:var(--ink);}
.quote figcaption{margin-top:1rem;font-family:var(--b-font);font-weight:700;text-transform:uppercase;letter-spacing:.1em;font-size:.82rem;color:var(--gray-700);}
@media(min-width:760px){.quote-grid{grid-template-columns:repeat(3,1fr);gap:2.5rem 3rem;}}

/* ---------- Events ---------- */
.events__head{display:flex;justify-content:space-between;align-items:flex-end;gap:1rem;flex-wrap:wrap;margin-bottom:1.5rem;border-bottom:2px solid var(--ink);padding-bottom:1rem;}
.event-grid{display:grid;gap:0;}
.event-card{display:flex;gap:1.5rem;align-items:baseline;padding:1.4rem 0;border-bottom:1px solid var(--rule);}
.event-card__date{flex:none;width:auto;text-align:left;background:none;color:var(--red-700);display:flex;align-items:baseline;gap:.4rem;font-family:var(--h-font);}
.event-card__mon{text-transform:uppercase;font-family:var(--b-font);font-weight:700;font-size:.8rem;letter-spacing:.12em;color:var(--gray-700);}
.event-card__day{font-family:var(--h-font);font-weight:700;font-size:2.2rem;line-height:1;color:var(--ink);}
.event-card__body h3{font-size:1.4rem;color:var(--ink);margin-bottom:.25rem;}
.event-card__when{margin:0;font-weight:700;color:var(--ink);}
.event-card__where{margin:0;color:var(--gray-700);}
@media(min-width:760px){.event-card{display:grid;grid-template-columns:120px 1fr;align-items:center;}}

/* ---------- Invite (im-new) ---------- */
.invite{display:grid;gap:clamp(1.5rem,4vw,3rem);align-items:center;}
.invite__facts{display:flex;gap:2.5rem;flex-wrap:wrap;margin:1.8rem 0;}
.invite__fact h3{font-family:var(--b-font);font-size:.82rem;text-transform:uppercase;letter-spacing:.14em;color:var(--red-600);margin-bottom:.5rem;}
.invite__fact address,.invite__fact p{font-style:normal;font-weight:700;color:var(--ink);font-family:var(--h-font);font-size:1.15rem;margin:0;line-height:1.5;}
.invite__map{border:1px solid var(--rule);outline:2px solid var(--red-600);outline-offset:-10px;overflow:hidden;}
.invite__map iframe{width:100%;height:100%;min-height:360px;border:0;}
@media(min-width:820px){.invite{grid-template-columns:1fr 1fr;}}

/* ---------- What to Expect ---------- */
.expect .eyebrow--center,.expect .section-title--center{max-width:var(--wrap);margin-inline:auto;}
.expect-row{margin-top:clamp(2.5rem,6vw,4.5rem);padding-top:clamp(2rem,4vw,3rem);border-top:1px solid var(--rule);}
.expect-row h3{font-size:clamp(1.6rem,3vw,2.2rem);color:var(--ink);margin-bottom:.8rem;}
.expect-row .split__media img{aspect-ratio:4/3;}

/* ---------- Kids ---------- */
.kids{background:var(--paper-deep);}
.kids__head{display:flex;align-items:center;gap:1.2rem;margin-bottom:1.3rem;}
.kids__badge{width:80px;height:auto;flex:none;}
.kids__intro{max-width:70ch;font-size:1.15rem;font-family:var(--h-font);}
.kids__lead img{width:100%;aspect-ratio:21/9;object-fit:cover;margin:2rem 0;border:1px solid var(--rule);outline:2px solid var(--red-600);outline-offset:-12px;}
.kids-schedule{display:grid;gap:0;border-top:2px solid var(--ink);}
.kids-col{padding:1.8rem 0;}
.kids-col+.kids-col{border-top:1px solid var(--rule);}
.kids-col__title{font-size:1.55rem;color:var(--ink);margin-bottom:1.1rem;display:flex;justify-content:space-between;gap:.6rem;flex-wrap:wrap;align-items:baseline;border-bottom:1px solid var(--red-600);padding-bottom:.6rem;}
.kids-col__title span{font-size:1rem;color:var(--red-700);font-weight:700;font-family:var(--b-font);}
.kids-item{margin-bottom:1.3rem;}
.kids-item:last-child{margin-bottom:0;}
.kids-item h4{font-size:1.15rem;color:var(--ink);margin-bottom:.35rem;}
.kids__gallery{display:grid;gap:1.5rem;margin-top:2rem;}
.kids__gallery img{width:100%;aspect-ratio:3/2;object-fit:cover;border:1px solid var(--rule);}
.kids__cta{text-align:center;margin-top:2.5rem;}
.kids__cta p{font-size:1.25rem;font-family:var(--h-font);color:var(--ink);margin-bottom:1.1rem;}
@media(min-width:760px){
  .kids-schedule{grid-template-columns:1fr 1fr;gap:0 3rem;}
  .kids-col+.kids-col{border-top:0;padding-left:0;}
  .kids__gallery{grid-template-columns:1fr 1fr;}
}

/* ---------- Gospel band ---------- */
.gospel-band{background:var(--night);color:var(--cream);padding-block:clamp(3.5rem,8vw,6rem);text-align:center;}
.gospel-band__inner{max-width:740px;}
.gospel-band__title{color:var(--cream);font-size:clamp(2rem,4.5vw,3.2rem);margin-bottom:.7rem;}
.gospel-band__body{color:#d9cdba;font-size:1.25rem;font-family:var(--h-font);margin-bottom:1.9rem;line-height:1.6;}

/* ---------- Next step ---------- */
.next-step{text-align:center;background:var(--paper-deep);}
.next-step__inner{max-width:660px;margin-inline:auto;}
.next-step p{font-size:1.2rem;font-family:var(--h-font);margin-bottom:1.7rem;}

/* ---------- Footer ---------- */
.site-footer{background:var(--night);color:#c8bca9;font-size:.98rem;}
.site-footer__grid{display:grid;gap:2rem;padding-block:clamp(2.5rem,6vw,4rem);}
.site-footer h2.footer-col__title{font-family:var(--b-font);font-size:.8rem;color:var(--cream);text-transform:uppercase;letter-spacing:.16em;margin-bottom:1.1rem;}
.footer-brand__logo{height:56px;width:auto;margin-bottom:.9rem;}
.footer-brand__est{font-family:var(--b-font);font-weight:700;letter-spacing:.26em;text-transform:uppercase;color:#e0a3a3;font-size:.78rem;margin:0 0 .9rem;}
.footer-brand__mission{color:var(--cream);font-family:var(--h-font);font-style:italic;font-size:1.15rem;max-width:26ch;}
.social{display:flex;gap:.7rem;margin-top:1.2rem;}
.social a{display:grid;place-items:center;width:40px;height:40px;border:1px solid rgba(243,236,224,.25);color:var(--cream);transition:.18s;}
.social a:hover{background:var(--red-600);border-color:var(--red-600);color:#fff;}
.site-footer address{font-style:normal;line-height:1.9;font-family:var(--h-font);}
.site-footer a{color:#c8bca9;text-decoration:none;}
.site-footer a:hover{color:var(--cream);text-decoration:underline;}
.footer-directions{display:inline-block;margin-top:.9rem;font-weight:700;color:#e0a3a3 !important;}
.footer-day{font-family:var(--h-font);font-weight:700;color:var(--cream);margin:.9rem 0 .2rem;}
.footer-line{margin:0 0 .5rem;}
.footer-links{display:grid;grid-template-columns:1fr 1fr;gap:.5rem .8rem;}
.footer-news p{margin-bottom:1rem;font-family:var(--h-font);}
.newsletter{display:flex;gap:.5rem;flex-wrap:wrap;}
.newsletter__input{flex:1;min-width:0;padding:.75rem 1rem;border:1px solid rgba(243,236,224,.25);background:rgba(255,255,255,.05);color:var(--cream);font-family:var(--b-font);font-size:1rem;}
.newsletter__input::placeholder{color:rgba(243,236,224,.55);}
.newsletter__btn{flex:none;}
.site-footer__base{border-top:1px solid rgba(243,236,224,.14);}
.site-footer__base-inner{display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;padding-block:1.3rem;font-size:.85rem;color:#9a8f7d;}
.site-footer__base p{margin:0;}
.site-footer,.series,.gospel-band{--focus:#e6c98f;}
@media(min-width:680px){.site-footer__grid{grid-template-columns:1.4fr 1fr 1fr;}}
@media(min-width:1000px){.site-footer__grid{grid-template-columns:1.6fr 1fr 1.2fr 1fr 1.3fr;}}

/* ---------- Mockup badge ---------- */
.mock-badge{position:fixed;left:1rem;bottom:1rem;z-index:60;display:inline-flex;align-items:center;gap:.5rem;
  background:var(--night);color:var(--cream);text-decoration:none;padding:.5rem .9rem;border-radius:var(--r);
  font-family:var(--b-font);font-weight:700;font-size:.82rem;text-transform:uppercase;letter-spacing:.08em;border:1px solid rgba(243,236,224,.2);}
.mock-badge__letter{background:var(--red-600);width:22px;height:22px;border-radius:50%;display:grid;place-items:center;color:#fff;}
.mock-badge:hover{background:#2f2b26;}

@media(prefers-reduced-motion:reduce){*{animation:none !important;scroll-behavior:auto !important;transition:none !important;}}
