:root{
  --navy:#123b51;
  --navy-deep:#0b2e42;
  --teal:#007c83;
  --teal-dark:#005f66;
  --gold:#d99b43;
  --gold-soft:#efc675;
  --cream:#f5efdf;
  --cream-deep:#eee3c8;
  --white:#ffffff;
  --ink:#163141;
  --muted:#5f737e;
  --line:#d9e0df;
  --success:#176b43;
  --error:#9c2f2f;
  --shadow:0 18px 46px rgba(10,47,66,.12);
  --radius:22px;
  --max:1180px;
  --reading:760px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:#fff;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.65;
  text-rendering:optimizeLegibility;
}
img,video{max-width:100%;height:auto}
a{color:var(--teal-dark);text-underline-offset:.18em}
a:hover{color:var(--navy)}
button,input,textarea,select{font:inherit}
button{cursor:pointer}
.sr-only{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;
  border:0!important;
}
.skip-link{
  position:fixed;
  z-index:9999;
  left:16px;
  top:12px;
  transform:translateY(-160%);
  background:#fff;
  color:var(--navy);
  padding:10px 14px;
  border-radius:8px;
  box-shadow:var(--shadow);
}
.skip-link:focus{transform:none}
.site-header{
  position:sticky;
  z-index:1000;
  top:0;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(18,59,81,.1);
  backdrop-filter:blur(12px);
}
.header-inner{
  max-width:var(--max);
  margin:auto;
  min-height:76px;
  padding:10px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand-link{text-decoration:none;color:var(--navy)}
.brand-mark{
  display:inline-flex;
  align-items:baseline;
  color:var(--navy);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.75rem,3.3vw,2.55rem);
  font-weight:700;
  line-height:1;
  letter-spacing:-.045em;
}
.brand-cross{
  display:inline-block;
  color:var(--gold);
  font-family:Georgia,"Times New Roman",serif;
  font-size:.93em;
  line-height:.75;
  transform:translateY(.03em);
  margin:0 .015em;
}
.brand-domain{
  color:var(--gold);
  font-size:.46em;
  letter-spacing:.02em;
  margin-left:.18em;
}
.site-nav{display:flex;align-items:center;gap:22px}
.site-nav a{
  color:var(--navy);
  text-decoration:none;
  font-size:.94rem;
  font-weight:700;
}
.site-nav a:hover{color:var(--teal)}
.site-nav .nav-cta{
  padding:10px 15px;
  border-radius:999px;
  background:var(--teal);
  color:#fff;
}
.nav-toggle{display:none;background:none;border:0;padding:8px}
.nav-toggle span[aria-hidden]{display:block;width:26px;height:2px;background:var(--navy);margin:5px}

.hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 12% 8%,rgba(239,198,117,.35),transparent 30%),
    linear-gradient(135deg,var(--cream) 0 55%,#fff 55%);
}
.hero::after{
  content:"";
  position:absolute;
  inset:auto -80px -220px auto;
  width:520px;height:520px;
  border-radius:50%;
  background:rgba(0,124,131,.08);
}
.hero-inner{
  position:relative;
  z-index:1;
  max-width:var(--max);
  min-height:680px;
  margin:auto;
  padding:70px 24px 56px;
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr);
  gap:64px;
  align-items:center;
}
.eyebrow,.kicker{
  margin:0 0 12px;
  color:var(--teal);
  font-size:.77rem;
  font-weight:850;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.hero h1,.page-hero h1,.section-title{
  margin:0;
  color:var(--navy);
  font-family:Georgia,"Times New Roman",serif;
  font-weight:700;
  line-height:1.02;
  letter-spacing:-.035em;
}
.hero h1{font-size:clamp(3.05rem,7vw,6.4rem);max-width:830px}
.hero h1 span{color:var(--teal)}
.hero-lead{
  max-width:720px;
  margin:26px 0 0;
  font-size:clamp(1.08rem,2vw,1.36rem);
  color:#2d4c5d;
}
.hero-values{
  margin:25px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:9px;
}
.hero-values span{
  padding:8px 12px;
  border:1px solid rgba(18,59,81,.16);
  border-radius:999px;
  background:rgba(255,255,255,.65);
  font-size:.86rem;
  font-weight:750;
}
.actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:30px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:11px 18px;
  border:1px solid transparent;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  transition:transform .16s ease,box-shadow .16s ease,background .16s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--teal);color:#fff;box-shadow:0 12px 24px rgba(0,124,131,.2)}
.btn-primary:hover{color:#fff;background:var(--teal-dark)}
.btn-secondary{background:#fff;color:var(--navy);border-color:rgba(18,59,81,.25)}
.btn-dark{background:var(--navy);color:#fff}
.btn-dark:hover{color:#fff;background:var(--navy-deep)}
.btn-gold{background:var(--gold);color:var(--navy-deep)}
.hero-portrait{position:relative}
.hero-portrait-frame{
  position:relative;
  overflow:hidden;
  min-height:545px;
  border-radius:120px 24px 24px 24px;
  box-shadow:var(--shadow);
  background:var(--navy);
}
.hero-portrait-frame img{
  width:100%;height:100%;min-height:545px;object-fit:cover;object-position:50% 25%;
  display:block;
}
.candidate-card{
  position:absolute;
  left:-48px;
  right:40px;
  bottom:-30px;
  padding:20px 24px;
  color:#fff;
  background:rgba(11,46,66,.96);
  border-left:6px solid var(--gold);
  border-radius:15px;
  box-shadow:var(--shadow);
}
.candidate-card strong{display:block;font-family:Georgia,"Times New Roman",serif;font-size:1.55rem}
.candidate-card span{display:block;color:#d5e6ea;font-size:.94rem}
.candidate-card a{color:var(--gold-soft);font-weight:800;text-decoration:none}

.faith-band{
  padding:34px 24px;
  background:var(--navy);
  color:#fff;
}
.faith-band blockquote{
  max-width:1000px;
  margin:auto;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.5rem,3vw,2.4rem);
  line-height:1.24;
  text-align:center;
}
.faith-band strong{color:var(--gold-soft)}

.section{padding:88px 24px}
.section-sm{padding:60px 24px}
.section-cream{background:var(--cream)}
.section-pale{background:#f5f8f8}
.section-navy{background:var(--navy);color:#fff}
.section-navy h2,.section-navy h3{color:#fff}
.section-inner{max-width:var(--max);margin:auto}
.reading{max-width:var(--reading);margin:auto}
.center{text-align:center}
.section-title{font-size:clamp(2.2rem,5vw,4.25rem)}
.section-lead{
  max-width:820px;
  margin:20px auto 0;
  color:var(--muted);
  font-size:1.15rem;
}
.section-navy .section-lead{color:#d7e6eb}
.text-link{font-weight:800}
.card-grid{
  margin-top:42px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.card{
  padding:27px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:0 10px 28px rgba(18,59,81,.055);
}
.card-icon{
  width:50px;height:50px;
  display:grid;place-items:center;
  margin-bottom:18px;
  border-radius:14px;
  background:var(--cream);
  color:var(--teal);
  font-weight:900;
  font-size:1.25rem;
}
.card h3{
  margin:0 0 10px;
  color:var(--navy);
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.55rem;
}
.card p{margin:0;color:var(--muted)}
.process-card{position:relative;overflow:hidden}
.process-card::before{
  content:attr(data-step);
  position:absolute;
  right:18px;top:9px;
  color:rgba(0,124,131,.1);
  font-family:Georgia,"Times New Roman",serif;
  font-size:5rem;
  font-weight:700;
  line-height:1;
}
.next-step-grid{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  border:1px solid rgba(255,255,255,.18);
  border-radius:var(--radius);
  overflow:hidden;
}
.next-step-item{
  padding:22px 24px;
  border-bottom:1px solid rgba(255,255,255,.14);
  display:grid;
  grid-template-columns:155px 1fr;
  gap:18px;
}
.next-step-item:nth-child(odd){border-right:1px solid rgba(255,255,255,.14)}
.next-step-item strong{color:var(--gold-soft)}
.next-step-item span{color:#e7f1f3}
.next-step-close{
  margin:34px auto 0;
  max-width:760px;
  color:#fff;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.35rem,2.5vw,2rem);
  text-align:center;
}
.imagine-grid{
  margin-top:40px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:start;
}
.imagine-list{display:grid;gap:16px}
.imagine-item{
  padding:20px 22px;
  border-left:4px solid var(--gold);
  background:#fff;
  box-shadow:0 8px 22px rgba(18,59,81,.05);
}
.imagine-item strong{color:var(--navy)}
.quote-panel{
  padding:42px;
  border-radius:var(--radius);
  background:var(--teal);
  color:#fff;
  box-shadow:var(--shadow);
}
.quote-panel blockquote{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.8rem,4vw,3rem);
  line-height:1.15;
}
.quote-panel p{margin:20px 0 0;color:#e0f1f2}

.latest-grid{
  margin-top:36px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.post-card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:0 10px 28px rgba(18,59,81,.06);
}
.post-card-media{
  aspect-ratio:16/10;
  background:linear-gradient(135deg,var(--navy),var(--teal));
  overflow:hidden;
}
.post-card-media img{width:100%;height:100%;object-fit:cover}
.post-card-body{display:flex;flex:1;flex-direction:column;padding:22px}
.post-meta{color:var(--teal);font-size:.78rem;font-weight:850;letter-spacing:.08em;text-transform:uppercase}
.post-card h3{margin:8px 0;color:var(--navy);font-family:Georgia,"Times New Roman",serif;font-size:1.55rem;line-height:1.15}
.post-card p{margin:0 0 18px;color:var(--muted)}
.post-card .text-link{margin-top:auto}
.empty-state{padding:24px;border:1px dashed var(--line);border-radius:16px;color:var(--muted)}

.election-strip{
  background:linear-gradient(125deg,var(--navy-deep),var(--navy));
  color:#fff;
}
.election-strip-inner{
  max-width:var(--max);
  margin:auto;
  padding:62px 24px;
  display:grid;
  grid-template-columns:210px 1fr auto;
  gap:34px;
  align-items:center;
}
.election-strip img{
  width:210px;height:210px;
  object-fit:cover;
  object-position:center 20%;
  border-radius:50%;
  border:6px solid rgba(255,255,255,.15);
}
.election-strip h2{margin:0;color:#fff;font-family:Georgia,"Times New Roman",serif;font-size:clamp(2rem,4vw,3.5rem)}
.election-strip p{margin:10px 0 0;color:#d5e5e9}
.election-date{color:var(--gold-soft);font-weight:850;letter-spacing:.07em;text-transform:uppercase}

.listen-layout{
  display:grid;
  grid-template-columns:minmax(0,.85fr) minmax(440px,1.15fr);
  gap:58px;
  align-items:start;
}
.listen-copy .section-title{max-width:610px}
.listen-prompts{margin:28px 0 0;padding:0;list-style:none}
.listen-prompts li{padding:10px 0;border-bottom:1px solid var(--line)}
.contact-form{
  padding:30px;
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:17px}
.field{display:flex;flex-direction:column;gap:7px}
.field-full{grid-column:1/-1}
.field label,.field legend{font-weight:780;color:var(--navy)}
.field small{color:var(--muted)}
.field input,.field textarea,.field select{
  width:100%;
  border:1px solid #bdc9cc;
  border-radius:12px;
  padding:12px 13px;
  color:var(--ink);
  background:#fff;
}
.field textarea{min-height:165px;resize:vertical}
.field input:focus,.field textarea:focus,.field select:focus{
  outline:3px solid rgba(0,124,131,.17);
  border-color:var(--teal);
}
.checkbox{
  display:grid;
  grid-template-columns:20px 1fr;
  gap:10px;
  align-items:start;
}
.checkbox input{width:18px;height:18px;margin-top:3px}
.form-note{margin:16px 0 0;color:var(--muted);font-size:.9rem}
.form-status{
  display:none;
  margin-bottom:18px;
  padding:13px 15px;
  border-radius:11px;
  font-weight:750;
}
.form-status.success{display:block;background:#e8f5ee;color:var(--success)}
.form-status.error{display:block;background:#f9e9e9;color:var(--error)}
.hp-field{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}

.page-hero{
  padding:72px 24px;
  background:linear-gradient(135deg,var(--cream),#fff);
}
.page-hero-inner{max-width:var(--max);margin:auto}
.page-hero h1{font-size:clamp(2.8rem,6vw,5.6rem);max-width:900px}
.page-hero p{max-width:820px;margin:22px 0 0;color:var(--muted);font-size:1.18rem}
.page-hero-split{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:54px;
  align-items:center;
}
.page-hero-split img{
  width:100%;
  max-height:430px;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.article{max-width:820px;margin:auto}
.article h2{
  margin:2.4em 0 .55em;
  color:var(--navy);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.9rem,4vw,3rem);
  line-height:1.1;
}
.article h3{
  margin:1.9em 0 .4em;
  color:var(--teal-dark);
  font-size:1.25rem;
}
.article p,.article li{font-size:1.04rem}
.article .opening{
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.42rem;
  color:var(--navy);
}
.article-callout{
  margin:38px 0;
  padding:28px 30px;
  border-left:6px solid var(--gold);
  background:var(--cream);
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.45rem;
  color:var(--navy);
}
.article-photo{
  margin:38px 0;
  display:grid;
  grid-template-columns:220px 1fr;
  gap:26px;
  align-items:center;
}
.article-photo img{width:220px;border-radius:18px;box-shadow:var(--shadow)}
.download-box{
  margin-top:46px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#f7f9f9;
}
.download-box h3{margin:0 0 8px}

.video-shell{
  max-width:900px;
  margin:30px auto 0;
  border-radius:var(--radius);
  overflow:hidden;
  background:#051b27;
  box-shadow:var(--shadow);
}
.video-shell video{width:100%;display:block}
.youtube-consent{
  position:relative;
  min-height:450px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-radius:var(--radius);
  background:linear-gradient(135deg,var(--navy-deep),var(--teal));
  color:#fff;
  box-shadow:var(--shadow);
}
.youtube-consent::before{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(rgba(6,34,49,.62),rgba(6,34,49,.82)),var(--poster) center/cover no-repeat;
}
.youtube-consent-inner{position:relative;z-index:1;max-width:620px;padding:34px;text-align:center}
.youtube-consent h2{margin:0 0 12px;color:#fff;font-family:Georgia,"Times New Roman",serif;font-size:2.4rem}
.youtube-consent p{color:#deebee}
.youtube-frame{width:100%;aspect-ratio:9/16;max-height:78vh;border:0;display:block;margin:auto;background:#000}
.youtube-short-wrap{
  max-width:450px;
  margin:30px auto 0;
  border-radius:var(--radius);
  overflow:hidden;
  background:#000;
  box-shadow:var(--shadow);
}

.priority-grid,.flyer-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
  margin-top:34px;
}
.priority{
  padding:25px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
}
.priority h3{margin:0 0 10px;color:var(--navy);font-family:Georgia,"Times New Roman",serif;font-size:1.45rem}
.flyer-card{
  overflow:hidden;
  border-radius:var(--radius);
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 10px 28px rgba(18,59,81,.06);
}
.flyer-pages{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  padding:12px;
  background:#edf2f2;
}
.flyer-pages img{width:100%;border-radius:8px;box-shadow:0 6px 14px rgba(18,59,81,.1)}
.flyer-card-body{padding:24px}
.flyer-card h3{margin:0;color:var(--navy);font-family:Georgia,"Times New Roman",serif;font-size:1.55rem}
.flyer-card p{color:var(--muted)}

.posts-list{display:grid;gap:20px;margin-top:34px}
.posts-list .post-card{
  display:grid;
  grid-template-columns:280px 1fr;
}
.posts-list .post-card-media{aspect-ratio:auto;min-height:210px}
.post-page{max-width:880px;margin:auto}
.post-page .post-heading{text-align:center}
.post-page h1{margin:10px 0;color:var(--navy);font-family:Georgia,"Times New Roman",serif;font-size:clamp(2.7rem,6vw,5.2rem);line-height:1.02}
.post-page .post-intro{font-size:1.2rem;color:var(--muted)}
.post-closing{margin:34px auto 0;padding:24px;border-left:5px solid var(--gold);background:var(--cream);font-family:Georgia,"Times New Roman",serif;font-size:1.3rem}

.privacy-summary{
  padding:22px;
  border-radius:16px;
  background:var(--cream);
}
.site-footer{background:var(--navy-deep);color:#dce9ec}
.footer-main{
  max-width:var(--max);
  margin:auto;
  padding:48px 24px 34px;
  display:flex;
  justify-content:space-between;
  gap:40px;
}
.footer-brand{color:#fff}
.footer-main p{margin:12px 0 0;color:#bcd0d7}
.footer-links{display:grid;grid-template-columns:repeat(2,minmax(120px,1fr));gap:8px 24px;align-content:start}
.footer-links a{color:#e8f1f3;text-decoration:none}
.footer-links a:hover{color:var(--gold-soft)}
.footer-legal{
  max-width:var(--max);
  margin:auto;
  padding:18px 24px 24px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:#adc2c9;
  font-size:.82rem;
}

@media(max-width:960px){
  .site-nav{
    position:absolute;
    top:76px;left:0;right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:10px 24px 22px;
    background:#fff;
    border-bottom:1px solid var(--line);
    box-shadow:0 16px 28px rgba(18,59,81,.1);
  }
  .site-nav.is-open{display:flex}
  .site-nav a{padding:12px 4px}
  .site-nav .nav-cta{text-align:center;margin-top:6px}
  .nav-toggle{display:block}
  .hero-inner{grid-template-columns:1fr;gap:52px;padding-top:54px}
  .hero-portrait{max-width:580px;margin:auto}
  .candidate-card{left:24px;right:24px}
  .card-grid,.latest-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .listen-layout{grid-template-columns:1fr}
  .page-hero-split{grid-template-columns:1fr}
  .page-hero-split img{max-width:520px}
  .election-strip-inner{grid-template-columns:150px 1fr}
  .election-strip img{width:150px;height:150px}
  .election-strip .btn{grid-column:1/-1;justify-self:start}
}
@media(max-width:700px){
  .header-inner{padding-inline:18px}
  .hero-inner{padding-inline:18px;min-height:auto}
  .hero h1{font-size:clamp(3rem,15vw,4.7rem)}
  .hero-portrait-frame,.hero-portrait-frame img{min-height:480px}
  .candidate-card{position:relative;left:auto;right:auto;bottom:auto;margin:-58px 16px 0}
  .section{padding:66px 18px}
  .section-sm{padding:48px 18px}
  .faith-band{padding-inline:18px}
  .card-grid,.latest-grid,.priority-grid,.flyer-grid,.imagine-grid{grid-template-columns:1fr}
  .next-step-grid{grid-template-columns:1fr}
  .next-step-item{grid-template-columns:1fr;gap:4px;border-right:0!important}
  .form-grid{grid-template-columns:1fr}
  .field-full{grid-column:auto}
  .contact-form{padding:22px}
  .election-strip-inner{grid-template-columns:1fr;text-align:center}
  .election-strip img{margin:auto}
  .election-strip .btn{justify-self:center}
  .page-hero{padding:54px 18px}
  .article-photo{grid-template-columns:1fr}
  .article-photo img{width:100%;max-width:320px}
  .flyer-pages{grid-template-columns:1fr}
  .posts-list .post-card{grid-template-columns:1fr}
  .footer-main,.footer-legal{flex-direction:column}
  .footer-links{grid-template-columns:1fr 1fr}
}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
}
