:root{
  --page:#f5f7fb;
  --page-2:#eef3f8;
  --ink:#102033;
  --ink-soft:#516176;
  --surface:#ffffff;
  --surface-2:#f8fbff;
  --surface-3:#edf3f9;
  --line-soft:rgba(16,32,51,.08);
  --line-mid:rgba(16,32,51,.12);
  --brand:#214f86;
  --brand-2:#2a6bc0;
  --brand-accent:#0f8a7b;
  --success:#22c55e;
  --danger:#dc2626;
  --shadow-card:0 18px 50px rgba(16,32,51,.10);
  --shadow-card-hover:0 24px 64px rgba(16,32,51,.14);
  --shadow-soft:0 10px 24px rgba(16,32,51,.08);
}

*{box-sizing:border-box}

html,
body{
  margin:0;
  padding:0;
  min-height:100%;
  font-family:Inter,Segoe UI,Arial,sans-serif;
  background:linear-gradient(180deg, #f8fbff 0%, #f3f6fb 40%, #eef2f7 100%);
  color:var(--ink);
}

body{
  min-height:100vh;
}

a{
  text-decoration:none;
  color:var(--brand);
  transition:color .18s ease;
}

a:hover{
  color:var(--brand-2);
}

p,
li{
  color:var(--ink-soft);
}

img{
  max-width:100%;
}

.container{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

.narrow{max-width:760px}
.narrow-page{max-width:980px}
.narrow-giving{max-width:980px}
.assembly-page{max-width:1100px}

/* ---------- Header ---------- */

.site-header,
.site-header.refined-site-header{
  position:sticky;
  top:0;
  z-index:1200;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(16,32,51,.08);
  box-shadow:0 8px 26px rgba(16,32,51,.05);
}

.nav,
.refined-nav{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  overflow:visible;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--ink);
  font-size:1.15rem;
  font-weight:800;
}

.brand-copy{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.brand-copy span{
  color:var(--ink);
  font-weight:800;
  letter-spacing:-.02em;
}

.brand-copy small{
  color:var(--ink-soft);
  font-size:.77rem;
  font-weight:600;
}

.site-logo{
  width:42px;
  height:42px;
  object-fit:contain;
}

.desktop-nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  overflow:visible;
}

.desktop-nav a,
.nav-dropdown-toggle{
  color:var(--ink);
  font-weight:600;
}

.desktop-nav a:hover,
.nav-dropdown-toggle:hover{
  color:var(--brand-2);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.nav-cta{
  padding:11px 16px;
}

.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:none;
  border-radius:12px;
  background:linear-gradient(135deg, var(--brand), var(--brand-2));
  color:#fff;
  font-size:1.35rem;
  font-weight:700;
  cursor:pointer;
}

.mobile-menu{
  display:none;
  background:rgba(255,255,255,.97);
  border-top:1px solid var(--line-soft);
}

.mobile-menu.open{
  display:block;
}

.mobile-menu-inner{
  display:flex;
  flex-direction:column;
  padding:14px 0 18px;
}

.mobile-menu-inner a{
  padding:14px 0;
  border-bottom:1px solid rgba(16,32,51,.08);
  color:var(--ink);
  font-weight:600;
}

.mobile-menu-inner a:last-child{
  border-bottom:none;
}

.mobile-cta{
  margin-top:14px;
  text-align:center;
}

/* ---------- Dropdown ---------- */

.nav-dropdown{
  position:relative;
  display:flex;
  align-items:center;
  height:100%;
}

.nav-caret{
  font-size:.7rem;
  opacity:.8;
}

.nav-submenu{
  position:absolute;
  top:calc(100% + 14px);
  left:0;
  min-width:230px;
  background:#ffffff;
  border:1px solid var(--line-soft);
  border-radius:14px;
  box-shadow:0 18px 40px rgba(16,32,51,.12);
  padding:8px;
  display:none;
  z-index:1100;
}

.nav-submenu a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  color:var(--ink);
  text-decoration:none;
  font-size:.96rem;
  font-weight:600;
  transition:background .2s ease, color .2s ease;
  white-space:nowrap;
}

.nav-submenu a:hover{
  background:#f4f8fc;
  color:var(--brand);
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu{
  display:block;
}

.nav-dropdown::after{
  content:"";
  position:absolute;
  left:0;
  top:100%;
  width:100%;
  height:14px;
}

.mobile-submenu{
  padding-left:18px;
  margin-top:4px;
  display:flex;
  flex-direction:column;
  gap:0;
}

.mobile-submenu a{
  padding:10px 0;
  font-size:.96rem;
  color:var(--ink-soft);
  font-weight:600;
  border-bottom:1px solid rgba(16,32,51,.06);
}

.mobile-submenu a:last-child{
  border-bottom:1px solid rgba(16,32,51,.06);
}

/* ---------- Typography / Shared ---------- */

.eyebrow,
.eyebrow-light{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(42,107,192,.08);
  color:var(--brand);
  border:1px solid rgba(42,107,192,.14);
  border-radius:999px;
  padding:8px 12px;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

h1,
.hero h2,
.section-head h2,
.newsletter-feature-copy h2,
.assembly-copy h2,
.church-card h3,
.church-button-top h3,
.church-detail-title,
.preview-title,
.hero-overlay h3,
.assembly-hotel-left h3,
.feature-card h3,
.contact-card h3,
.polished-event-card h3{
  color:var(--ink);
}

h1{
  font-size:clamp(2.65rem, 5vw, 4.35rem);
  line-height:1.02;
  margin:.4rem 0 1rem;
  letter-spacing:-.03em;
}

.hero h2{
  font-size:clamp(2rem, 4vw, 3.25rem);
}

.section-head h2,
.newsletter-feature-copy h2{
  font-size:clamp(2rem, 3vw, 2.5rem);
  margin:.25rem 0 .9rem;
  line-height:1.08;
  letter-spacing:-.03em;
}

.assembly-copy h2{
  font-size:2.6rem;
  margin:.25rem 0 .9rem;
  line-height:1.08;
  letter-spacing:-.03em;
}

.lead,
.hero p.lead,
.section-lead,
.newsletter-feature-lead,
.assembly-meta,
.assembly-text,
.hero-meta,
.church-card p,
.church-button-meta,
.church-button-address,
.church-detail-address,
.preview-text,
.event-meta,
.office-item span,
.highlight-item span,
.newsletter-preview-item span,
.newsletter-preview-footer span,
.assembly-hotel-left p,
.assembly-footnotes,
.giving-text{
  color:var(--ink-soft);
  line-height:1.75;
}

.lead{
  font-size:1.08rem;
}

.hero-lead{
  max-width:58ch;
}

.card-label{
  font-size:.75rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--brand);
  font-weight:800;
}

/* ---------- Buttons ---------- */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 22px;
  border-radius:14px;
  font-weight:700;
  font-size:.95rem;
  letter-spacing:.02em;
  border:1px solid transparent;
  cursor:pointer;
  transition:
    background .18s ease,
    color .18s ease,
    transform .12s ease,
    box-shadow .12s ease,
    border-color .18s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:linear-gradient(135deg, var(--brand), var(--brand-2));
  color:#ffffff !important;
  box-shadow:0 12px 28px rgba(33,79,134,.18);
}

.btn-primary:hover{
  background:linear-gradient(135deg, #1c4472, #255ca7);
  color:#ffffff !important;
}

.btn-primary:active{
  transform:translateY(0);
}

.btn-secondary{
  background:#ffffff;
  color:var(--ink);
  border:1px solid var(--line-mid);
  box-shadow:0 8px 20px rgba(16,32,51,.05);
}

.btn-secondary:hover{
  background:#f7faff;
  color:var(--ink);
}

.btn-light{
  background:#fff;
  color:#0f1d30;
  border:1px solid transparent;
}

.btn-light:hover{
  background:#edf4fb;
}

.btn-outline-light{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.24);
}

.btn-outline-light:hover{
  background:rgba(255,255,255,.08);
}

.btn-paypal{
  background:linear-gradient(90deg,#FFD140,#FFEE8A);
  color:#0b0f1a !important;
  box-shadow:0 8px 18px rgba(255,209,64,.28);
}

.btn-paypal:hover{
  color:#0b0f1a !important;
  box-shadow:0 12px 22px rgba(255,209,64,.32);
}

.btn-venmo{
  background:linear-gradient(90deg,#ff3b3b,#ff6b6b);
  color:#ffffff !important;
  box-shadow:0 8px 18px rgba(255,59,59,.22);
}

.btn-venmo:hover{
  color:#ffffff !important;
  box-shadow:0 12px 22px rgba(255,59,59,.28);
}

/* ---------- Sections ---------- */

.section{
  padding:86px 0;
}

.section-white,
.section-soft,
.section-home-light,
.newsletter-feature{
  background:transparent;
}

.section-head{
  max-width:760px;
  margin:0 0 34px;
}

.centered-head{
  margin:0 auto 34px;
  text-align:center;
}

.section-subtitle{
  font-size:1.15rem;
  line-height:1.2;
  color:var(--ink);
  margin:0 0 16px;
  font-weight:800;
}

.section-head-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

/* ---------- Cards ---------- */

.cards,
.cards-3,
.cards-4{
  display:grid;
  gap:24px;
}

.cards{
  grid-template-columns:repeat(3,1fr);
}

.cards-3{
  grid-template-columns:repeat(3,1fr);
}

.cards-4{
  grid-template-columns:repeat(4,1fr);
}

.cards-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.card,
.hero-card,
.giving-card,
.assembly-page-hero-copy,
.assembly-hotel-card,
.empty-state,
.contact-card,
.office-item,
.highlight-item,
.preview-item,
.newsletter-preview-item,
.church-button-card,
.state-button,
.mini-info-card,
.church-card,
.church-detail-card,
.directory-preview,
.newsletter-preview,
.hero-photo-card{
  background:rgba(255,255,255,.92);
  border:1px solid var(--line-soft);
  border-radius:24px;
  box-shadow:var(--shadow-card);
}

.card{
  padding:24px;
}

.hero-card{
  overflow:hidden;
}

.hero-card-inner{
  padding:28px;
}

/* ---------- Search / Forms ---------- */

.search,
.preview-search,
.form-group input,
.form-group textarea{
  width:100%;
  border:1px solid var(--line-soft);
  border-radius:14px;
  background:#f8fbff;
  color:var(--ink);
  font-family:inherit;
  font-size:.95rem;
}

.search{
  width:100%;
  padding:16px 18px;
  margin:12px 0 18px;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.search::placeholder{
  color:var(--ink-soft);
}

.search:focus{
  border-color:rgba(42,107,192,.45);
  box-shadow:0 0 0 4px rgba(42,107,192,.10);
  background:#ffffff;
}

.form-group input,
.form-group textarea{
  padding:12px 14px;
}

.form-group textarea{
  resize:vertical;
}

.form-group{
  margin-bottom:16px;
}

.form-group label{
  display:block;
  font-weight:600;
  margin-bottom:6px;
  color:var(--ink);
}

.preview-search{
  height:48px;
  margin-bottom:16px;
}

.preview-search-bar{
  display:flex;
  align-items:center;
  padding:0 14px;
  color:var(--ink-soft);
  font-size:.95rem;
}

.preview-search-text{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* ---------- Hero ---------- */

.hero,
.home-hero,
.home-hero-refined{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at top right, rgba(42,107,192,.10), transparent 26%),
    radial-gradient(circle at left center, rgba(15,138,123,.08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f1f6fb 100%);
  padding:84px 0 72px;
}

.home-hero-refined::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,.55), rgba(255,255,255,0));
  pointer-events:none;
}

.hero-grid,
.home-hero-grid,
.refined-hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(340px, 500px);
  gap:54px;
  align-items:start;
}

.hero-copy,
.hero-stack{
  position:relative;
  z-index:1;
}

.hero-copy{
  max-width:640px;
}

.hero-copy h1{
  max-width:12ch;
}

.hero-actions,
.detail-button-row,
.giving-actions,
.newsletter-feature-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  font-size:.96rem;
  font-weight:600;
  margin-top:28px;
}

.hero-meta span{
  display:flex;
  align-items:center;
  gap:10px;
  color:#c8d6ea;
}

.hero-meta i{
  width:9px;
  height:9px;
  border-radius:999px;
  background:var(--brand-accent);
  display:inline-block;
  flex:0 0 auto;
}

.hero-feature-card{
  position:relative;
  min-height:460px;
  overflow:hidden;
}

.hero-photo-card{
  position:relative;
  padding:0;
  display:block;
  overflow:hidden;
}

.hero-photo-img{
  width:100%;
  min-height:460px;
  height:460px;
  object-fit:cover;
  object-position:center;
  display:block;
}

.refined-hero-overlay{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  padding:22px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(255,255,255,.7);
  border-radius:20px;
  box-shadow:0 18px 40px rgba(16,32,51,.16);
}

.refined-hero-overlay h3{
  margin:8px 0 8px;
  font-size:1.8rem;
  line-height:1.15;
}

.refined-hero-overlay p{
  margin:0;
}

.hero-info-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:16px;
}

.mini-info-card{
  padding:18px;
  border-radius:20px;
}

.mini-info-label{
  display:block;
  font-size:.74rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--brand);
  font-weight:800;
  margin-bottom:8px;
}

.mini-info-card strong{
  display:block;
  color:var(--ink);
  margin-bottom:8px;
}

.mini-info-card p{
  margin:0;
  font-size:.95rem;
  line-height:1.65;
}

/* ---------- Feature Cards ---------- */

.feature-card{
  padding:28px;
  border-radius:24px;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.feature-card:hover{
  transform:translateY(-4px);
  border-color:var(--line-mid);
  box-shadow:var(--shadow-card-hover);
}

.feature-card h3{
  margin:0 0 10px;
  font-size:1.2rem;
}

.feature-card p{
  min-height:74px;
  color:#5b6b7f;
}

.feature-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:#eef5fb;
  color:var(--brand);
  font-weight:800;
  font-size:22px;
  margin-bottom:18px;
}

.feature-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:8px;
  color:var(--brand);
  font-size:15px;
  font-weight:700;
}

/* ---------- Trust Band ---------- */

.trust-band-section{
  padding-top:28px;
  padding-bottom:28px;
}

.trust-band{
  display:grid;
  grid-template-columns:1.1fr 1.4fr;
  gap:26px;
  padding:26px 30px;
  border-radius:28px;
  background:linear-gradient(135deg, #18395f, #234d7f);
  box-shadow:0 20px 46px rgba(24,57,95,.16);
}

.trust-band .eyebrow,
.trust-band h2,
.trust-band p,
.trust-point strong,
.trust-point span{
  color:#ffffff;
}

.trust-band .eyebrow{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.15);
}

.trust-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.trust-point{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:18px;
}

.trust-point strong{
  display:block;
  margin-bottom:8px;
}

.trust-point span{
  display:block;
  line-height:1.65;
  opacity:.92;
}

/* ---------- Layout Blocks ---------- */

.two-col,
.contact-grid,
.giving-grid,
.assembly-page-hero,
.newsletter-feature-grid{
  display:grid;
  gap:24px;
  align-items:center;
}

.two-col{
  grid-template-columns:1fr 1fr;
  gap:34px;
}

.contact-grid{
  grid-template-columns:1.05fr .95fr;
}

.giving-grid{
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.assembly-page-hero{
  grid-template-columns:1.05fr .95fr;
  margin-bottom:22px;
}

.newsletter-feature-grid{
  grid-template-columns:1.08fr .92fr;
  gap:32px;
}

.refined-two-col{
  align-items:center;
  gap:34px;
}

.stacked-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:14px;
}

.inline-note{
  margin:0;
  max-width:48ch;
}

/* ---------- Preview / Directory ---------- */

.directory-preview{
  border-radius:28px;
  overflow:hidden;
}

.preview-top,
.newsletter-preview-top{
  padding:12px 14px;
  border-bottom:1px solid var(--line-soft);
  display:flex;
  align-items:center;
  gap:8px;
  background:#f5f9fd;
}

.preview-top span{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#bfd2e6;
  display:block;
}

.preview-body,
.newsletter-preview-body{
  padding:20px;
  background:transparent;
}

.preview-list,
.newsletter-preview-body{
  display:grid;
  gap:12px;
}

.preview-item{
  padding:16px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
  align-items:center;
  background:#fbfdff;
  border:1px solid rgba(16,32,51,.06);
  border-radius:16px;
}

.preview-item-link{
  text-decoration:none;
  color:inherit;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.preview-item-link:hover{
  transform:translateY(-3px);
  border-color:var(--line-mid);
  box-shadow:var(--shadow-card-hover);
}

.preview-title{
  font-size:1rem;
  font-weight:800;
  margin:0 0 5px !important;
}

.preview-text{
  font-size:.92rem;
  margin:0 !important;
  line-height:1.5 !important;
}

.preview-pill,
.newsletter-preview-pill,
.event-badge,
.giving-badge,
.assembly-page-badge{
  padding:8px 11px;
  border-radius:999px;
  background:#edf5ff;
  color:var(--brand);
  border:1px solid rgba(42,107,192,.12);
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  white-space:nowrap;
  text-transform:uppercase;
}

.preview-list-scroll{
  max-height:360px;
  overflow-y:auto;
  padding-right:6px;
}

.preview-list-scroll::-webkit-scrollbar{
  width:8px;
}

.preview-list-scroll::-webkit-scrollbar-track{
  background:rgba(16,32,51,.06);
  border-radius:999px;
}

.preview-list-scroll::-webkit-scrollbar-thumb{
  background:rgba(42,107,192,.35);
  border-radius:999px;
}

.preview-list-scroll::-webkit-scrollbar-thumb:hover{
  background:rgba(42,107,192,.55);
}

/* ---------- Highlights / Office ---------- */

.highlight-list,
.office-list,
.assembly-hotel-list{
  display:grid;
  gap:16px;
}

.highlight-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px 18px;
}

.highlight-dot,
.newsletter-preview-dot{
  width:12px;
  height:12px;
  border-radius:999px;
  background:var(--brand-2);
  margin-top:6px;
  flex:0 0 auto;
}

.highlight-item strong,
.newsletter-preview-item strong,
.newsletter-preview-footer strong,
.office-item strong{
  display:block;
  color:var(--ink);
  font-size:15px;
  line-height:1.3;
  margin-bottom:4px;
}

.office-item{
  padding:14px 16px;
  background:#fbfdff;
}

.office-item strong{
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.05em;
}

/* ---------- Events ---------- */

.event-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
}

.home-events-section .section-head{
  max-width:760px;
}

.refined-events-section{
  background:linear-gradient(180deg, #f2f6fb 0%, #edf3f8 100%);
}

.polished-event-card,
.refined-event-card{
  padding:26px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.88));
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.polished-event-card:hover,
.refined-event-card:hover{
  transform:translateY(-4px);
  border-color:var(--line-mid);
  box-shadow:var(--shadow-card-hover);
}

.event-card-top{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
  margin-bottom:14px;
}

.event-badge{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:#eef5ff;
  color:var(--brand);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.04em;
}

.event-date-display{
  margin:0;
  color:var(--ink-soft);
  font-size:.98rem;
  font-weight:700;
}

.polished-event-card h3{
  margin:0 0 10px;
  font-size:1.45rem;
  line-height:1.15;
}

.polished-event-card .event-meta{
  margin:0 0 12px;
  font-size:.98rem;
  color:var(--brand);
  line-height:1.6;
}

.event-description{
  margin:0 0 20px;
  color:var(--ink-soft);
  line-height:1.75;
  min-height:88px;
}

.event-card-bottom{
  margin-top:auto;
  padding-top:8px;
}

.event-subnav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:0 0 24px;
}

.event-subnav-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid var(--line-soft);
  color:var(--ink);
  font-weight:700;
  font-size:.95rem;
  transition:all .15s ease;
}

.event-subnav-link:hover{
  background:#f7faff;
  transform:translateY(-1px);
}

.event-subnav-link.active{
  background:linear-gradient(135deg, var(--brand), var(--brand-2));
  border-color:transparent;
  color:#fff;
}

/* ---------- Church Directory ---------- */

.church-grid,
.church-button-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:18px;
}

.state-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:16px;
  margin-top:10px;
}

.state-button{
  width:100%;
  text-align:left;
  padding:20px 18px;
  cursor:pointer;
  border:none;
  border-radius:20px;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  color:var(--ink);
}

.state-button:hover{
  transform:translateY(-3px);
  border-color:var(--line-mid);
  box-shadow:var(--shadow-card-hover);
}

.state-button-name{
  display:block;
  font-size:1.06rem;
  font-weight:800;
  color:var(--ink);
  margin-bottom:6px;
}

.state-button-count{
  display:block;
  font-size:.92rem;
  color:var(--ink-soft);
}

.church-button-card{
  display:block;
  padding:20px;
  border-radius:22px;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.church-button-card:hover{
  transform:translateY(-4px);
  border-color:var(--line-mid);
  box-shadow:var(--shadow-card-hover);
}

.church-button-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:10px;
}

.church-button-top h3{
  margin:0;
  font-size:1.1rem;
  line-height:1.3;
  font-weight:800;
}

.church-button-arrow{
  flex-shrink:0;
  font-size:1.25rem;
  color:var(--brand);
  font-weight:700;
}

.church-button-meta{
  margin:0 0 8px 0;
  color:var(--brand-accent);
  font-size:.95rem;
  font-weight:600;
}

.church-button-address{
  margin:0;
  font-size:.94rem;
  line-height:1.5;
}

/* ---------- Church Detail ---------- */

.church-card{
  padding:0;
  overflow:hidden;
}

.church-detail-card{
  padding:0;
  overflow:hidden;
  border-radius:28px;
  background:#ffffff;
}

.loading-card{
  padding:34px 28px;
}

.loading-card h1,
.loading-card p{
  color:var(--ink);
}

.church-image-wrap,
.church-detail-image-wrap{
  width:100%;
  aspect-ratio:16 / 7;
  background:#eef3f8;
  overflow:hidden;
}

.church-detail-image-wrap{
  position:relative;
}

.church-detail-image-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(16,32,51,.18), rgba(16,32,51,.02));
  pointer-events:none;
}

.church-image,
.church-detail-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.church-card-body,
.church-detail-body{
  padding:24px;
}

.church-detail-body{
  padding:30px 28px 32px;
}

.church-detail-title{
  margin:0 0 10px 0;
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:1.08;
  font-weight:800;
  letter-spacing:-0.02em;
}

.church-detail-address{
  margin:0 0 10px 0;
  font-size:1rem;
  line-height:1.6;
}

.church-detail-address strong{
  color:var(--brand-accent);
}

.church-detail-intro{
  margin:0 0 24px 0;
  color:var(--ink-soft);
  font-size:1rem;
  line-height:1.7;
  max-width:680px;
}

.church-detail-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
}

.church-section{
  padding:22px 20px;
  border-radius:20px;
  background:#f8fbff;
  border:1px solid var(--line-soft);
}

.church-section h4{
  margin:0 0 16px 0;
  font-size:1.05rem;
  color:var(--ink);
  font-weight:800;
  letter-spacing:.01em;
}

.church-services{
  display:grid;
  gap:10px;
}

.church-service-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:13px 14px;
  border-radius:14px;
  background:#ffffff;
  border:1px solid var(--line-soft);
}

.church-service-label{
  color:var(--ink-soft);
  font-weight:500;
}

.church-service-time{
  color:var(--brand-accent);
  font-weight:800;
  white-space:nowrap;
}

.church-contact-grid{
  display:grid;
  gap:14px;
}

.church-contact{
  padding:15px 16px;
  border-radius:16px;
  background:#ffffff;
  border:1px solid var(--line-soft);
}

.church-contact-label{
  margin:0 0 6px 0;
  color:var(--brand);
  font-size:.82rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.church-contact-name{
  margin:0 0 6px 0;
  color:var(--ink);
  font-size:1rem;
  font-weight:700;
}

.church-contact-line{
  margin:0;
  color:var(--ink-soft);
  line-height:1.6;
}

.church-contact-line a{
  color:var(--brand);
  text-decoration:none;
}

.church-contact-line a:hover{
  color:var(--brand-accent);
}

.church-empty-note{
  margin:0;
  color:var(--ink-soft);
}

/* ---------- Giving ---------- */

.giving-card{
  padding:24px;
}

.giving-option{
  border:1px solid var(--line-soft);
  border-radius:18px;
  background:#ffffff;
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:18px;
  box-shadow:var(--shadow-soft);
}

.giving-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}

.giving-top h2{
  margin:0 0 10px;
  font-size:1.25rem;
  line-height:1.2;
  color:var(--ink);
}

.giving-qr{
  margin-top:4px;
  display:flex;
  justify-content:center;
}

.giving-qr img{
  width:100%;
  max-width:180px;
  border-radius:14px;
  border:1px solid var(--line-soft);
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  display:block;
}

.giving-footer{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid var(--line-soft);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--ink-soft);
  font-size:.95rem;
  line-height:1.6;
}

.giving-footer-links{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

/* ---------- Assembly ---------- */

.assembly-page-section{
  background:transparent;
}

.assembly-page-hero{
  grid-template-columns:1.05fr .95fr;
  margin-bottom:26px;
  gap:24px;
  align-items:stretch;
}

.assembly-page-hero-copy{
  padding:28px;
  border-radius:26px;
  background:#ffffff;
  border:1px solid var(--line-soft);
  box-shadow:var(--shadow-card);
}

.assembly-page-hero-copy h2{
  margin:12px 0 12px;
  color:var(--ink);
  font-size:clamp(1.9rem, 3vw, 2.6rem);
  line-height:1.08;
  letter-spacing:-.02em;
}

.assembly-page-hero-copy p{
  margin:0;
  color:var(--ink-soft);
  line-height:1.75;
}

.assembly-page-badge{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:#edf5ff;
  color:var(--brand);
  border:1px solid rgba(42,107,192,.12);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.assembly-page-hero-image{
  min-height:320px;
  border-radius:26px;
  overflow:hidden;
  border:1px solid var(--line-soft);
  box-shadow:var(--shadow-card);
  background:#eef3f8;
}

.assembly-page-hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.assembly-page-meta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:18px;
}

.assembly-page-meta div{
  background:#f8fbff;
  border:1px solid var(--line-soft);
  border-radius:16px;
  padding:14px 16px;
  color:var(--ink-soft);
  line-height:1.6;
}

.assembly-page-meta strong{
  color:var(--ink);
}

.assembly-alert{
  margin:0 0 24px;
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(220,38,38,.14);
  background:linear-gradient(180deg, rgba(220,38,38,.06), rgba(220,38,38,.03));
  color:#7a1f1f;
  font-weight:600;
  box-shadow:0 8px 18px rgba(220,38,38,.05);
}

.assembly-alert strong{
  color:#8f1d1d;
}

.assembly-hotel-list{
  display:grid;
  gap:18px;
}

.assembly-hotel-card{
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
  align-items:center;
  padding:22px;
  border-radius:22px;
  background:#ffffff;
  border:1px solid var(--line-soft);
  box-shadow:var(--shadow-card);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.assembly-hotel-card:hover{
  transform:translateY(-3px);
  border-color:var(--line-mid);
  box-shadow:var(--shadow-card-hover);
}

.assembly-hotel-left h3{
  margin:0 0 8px;
  color:var(--ink);
  font-size:1.2rem;
  line-height:1.2;
}

.assembly-hotel-left p{
  margin:0;
  color:var(--ink-soft);
  line-height:1.7;
}

.assembly-hotel-left a{
  color:var(--brand);
  font-weight:600;
}

.assembly-hotel-left a:hover{
  color:var(--brand-2);
}

.assembly-hotel-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  flex-wrap:wrap;
}

.assembly-rate{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line-soft);
  background:#f8fbff;
  color:var(--ink);
  font-weight:800;
  font-size:.95rem;
  white-space:nowrap;
}

.assembly-footnotes{
  margin-top:24px;
  padding:20px 22px;
  border-radius:22px;
  background:#ffffff;
  border:1px solid var(--line-soft);
  box-shadow:var(--shadow-card);
  display:grid;
  gap:8px;
}

.assembly-footnotes p{
  margin:0;
  line-height:1.7;
  color:var(--ink-soft);
}

.assembly-footnotes strong{
  color:var(--ink);
}

@media (max-width:900px){
  .assembly-page-hero,
  .assembly-page-meta,
  .assembly-hotel-card{
    grid-template-columns:1fr;
  }

  .assembly-hotel-right{
    justify-content:flex-start;
  }
}

@media (max-width:640px){
  .assembly-page-hero-copy{
    padding:22px 18px;
  }

  .assembly-hotel-card{
    padding:18px;
  }

  .assembly-rate{
    white-space:normal;
  }
}
/* ---------- Contact / Office ---------- */

.contact-card-primary{
  background:linear-gradient(135deg, #18395f, #234d7f);
  border:none;
}

.contact-card-primary h3,
.contact-card-primary p,
.contact-card-primary .eyebrow{
  color:#ffffff;
}

.contact-card-primary .eyebrow{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.14);
}

.office-summary-card h3{
  margin-top:0;
}

.refined-office-list{
  display:grid;
  gap:14px;
}

/* ---------- Empty States ---------- */

.empty-state{
  padding:28px 22px;
  border-radius:18px;
  background:#ffffff;
  text-align:center;
}

.empty-state h3{
  margin:0 0 8px;
  color:var(--ink);
}

.empty-state p{
  margin:0;
  color:var(--ink-soft);
  line-height:1.7;
}

/* ---------- Footer ---------- */

.site-footer,
.refined-footer{
  margin-top:0;
  background:#0f2136;
  color:#fff;
  padding:0;
  border-top:none;
}

.footer-inner{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  padding:22px 0;
  text-align:left;
}

.footer-inner > *{
  margin:0;
}

.footer-brand{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.footer-brand strong,
.footer-heading{
  color:#ffffff;
}

.footer-brand span,
.footer-links-grid span,
.footer-links-grid a,
.footer-bottom-bar,
.footer-right a,
.footer-right span{
  color:rgba(255,255,255,.78);
}

.footer-right{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.footer-right a:hover{
  color:#fff;
}

.footer-shell{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:28px;
  padding:52px 0 34px;
}

.footer-brand-line{
  display:flex;
  align-items:flex-start;
  gap:16px;
}

.footer-logo{
  flex:0 0 auto;
}

.footer-links-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.footer-links-grid > div{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-heading{
  margin:0 0 4px;
  font-size:.86rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.footer-bottom-bar{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:16px 0 28px;
  border-top:1px solid rgba(255,255,255,.08);
}

.desktop-only{
  display:inline-flex;
}

/* ---------- Responsive ---------- */

@media (max-width:1100px){
  .trust-points,
  .footer-links-grid{
    grid-template-columns:1fr;
  }

  .trust-band,
  .footer-shell,
  .hero-grid,
  .home-hero-grid,
  .refined-hero-grid,
  .newsletter-feature-grid{
    grid-template-columns:1fr;
  }

  .hero-photo-img{
    height:430px;
    min-height:430px;
  }
}

@media (max-width:1080px){
  .cards-4{
    grid-template-columns:repeat(2,1fr);
  }

  .cards-3,
  .two-col,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .section-head h2{
    font-size:2rem;
  }
}

@media (max-width:980px){
  .newsletter-feature-copy h2{
    font-size:2rem;
  }
}

@media (max-width:900px){
  .desktop-only{
    display:none;
  }

  .brand-copy small{
    display:none;
  }

  .desktop-nav{
    display:none;
  }

  .menu-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .nav-dropdown{
    display:none;
  }

  .nav-submenu{
    display:none !important;
  }

  .cards,
  .cards-3,
  .cards-4,
  .church-grid,
  .church-button-grid,
  .state-grid,
  .giving-grid,
  .assembly-page-hero,
  .assembly-page-meta,
  .assembly-hotel-card,
  .hero-info-row,
  .two-col,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .refined-nav,
  .nav{
    min-height:74px;
  }

  .footer-inner{
    min-height:auto;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:26px 0 28px;
    gap:12px;
  }

  .footer-brand{
    align-items:center;
  }

  .footer-right{
    justify-content:center;
    align-items:center;
    gap:10px 14px;
  }

  h1{
    font-size:2.4rem;
    max-width:none;
  }

  .cards-2{
    grid-template-columns:1fr !important;
  }

  .assembly-hotel-right{
    justify-content:flex-start;
  }

  .church-detail-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .section{
    padding:68px 0;
  }

  .hero,
  .home-hero,
  .home-hero-refined{
    padding:68px 0 54px;
  }

  h1{
    font-size:2.55rem;
  }

  .hero-photo-img{
    height:300px;
    min-height:300px;
  }

  .refined-hero-overlay{
    left:16px;
    right:16px;
    bottom:16px;
    padding:18px;
  }

  .refined-hero-overlay h3{
    font-size:1.35rem;
  }

  .feature-card p{
    min-height:auto;
  }

  .assembly-copy h2,
  .newsletter-feature-copy h2{
    font-size:1.75rem;
  }

  .assembly-page-hero-copy,
  .giving-card,
  .church-detail-body{
    padding:22px 18px;
  }

  .assembly-page-hero-copy h2{
    font-size:1.65rem;
  }

  .assembly-hotel-card{
    padding:18px;
  }

  .assembly-rate{
    white-space:normal;
  }

  .event-subnav{
    gap:8px;
  }

  .event-subnav-link,
  .section-head-row .btn,
  .detail-button-row .btn,
  .giving-actions .btn{
    width:100%;
  }

  .section-head-row{
    align-items:flex-start;
  }

  .church-button-grid,
  .state-grid{
    grid-template-columns:1fr;
  }

  .newsletter-preview-top{
    flex-direction:column;
    align-items:flex-start;
  }

  .trust-band{
    padding:22px;
  }

  .footer-bottom-bar{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width:560px){
  .church-detail-image-wrap{
    aspect-ratio:4 / 3;
  }

  .church-service-row{
    flex-direction:column;
    align-items:flex-start;
  }

  .church-service-time{
    white-space:normal;
  }
}
/* =========================
   GLOBAL SECTION SPACING
========================= */

.section {
  padding: 64px 0; /* ↓ reduced from typical 80–100 */
  position: relative;
}

.section-white {
  background: #ffffff;
}

.section-soft {
  background: #f7f9fc;
}

/* tighter spacing on mobile */
@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }
}


/* =========================
   SECTION SEPARATORS
========================= */

/* subtle divider line between sections */
.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 92%);
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}

/* stronger separation for alternating backgrounds */
.section-soft + .section-white::before,
.section-white + .section-soft::before {
  background: rgba(0, 0, 0, 0.08);
}


/* =========================
   SECTION HEAD TIGHTENING
========================= */

.section-head {
  margin-bottom: 32px; /* ↓ tighter */
}

.section-head h2 {
  margin-bottom: 10px;
}

.section-lead {
  margin-top: 6px;
  max-width: 640px;
}

.centered-head {
  text-align: center;
  margin-bottom: 40px; /* ↓ was probably too big */
}


/* =========================
   CARD GRID SPACING
========================= */

.cards {
  gap: 18px; /* tighter grid */
}

.cards-3,
.cards-4 {
  margin-top: 24px;
}


/* =========================
   HERO → NEXT SECTION FIX
========================= */

.home-hero {
  padding-bottom: 48px; /* reduces gap below hero */
}

.home-hero + .section {
  margin-top: -10px; /* pulls next section up slightly */
}


/* =========================
   TRUST BAND (SPECIAL LOOK)
========================= */

.trust-band {
  border-radius: 18px;
  padding: 36px;

  background: linear-gradient(
    135deg,
    rgba(20, 40, 80, 0.95),
    rgba(25, 80, 120, 0.95)
  );

  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.08);
}
.trust-band .eyebrow {
  color: rgba(255,255,255,0.7);
}

.trust-band h2 {
  color: #ffffff;
}

.trust-band span {
  color: rgba(255,255,255,0.75);
}

/* =========================
   EVENTS SECTION POLISH
========================= */

.refined-events-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.event-card {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  transition: all 0.2s ease;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* =========================
   CONTACT SECTION BALANCE
========================= */

.contact-cta-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.contact-card {
  padding: 28px;
  border-radius: 16px;
}