/* ============================================================
   2:22 CHURCH — Antioch-inspired shared stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root{
  --gold:#172A36;
  --gold-light:#EAF1F4;
  --gold-dark:#0D171F;
  --deep:#FFFFFF;
  --deep-mid:#F4F7F5;
  --surface:#FFFFFF;
  --surface-light:#EEF4F7;
  --text-primary:#0E0E0E;
  --text-secondary:#47545B;
  --text-muted:#778187;
  --border:rgba(23,42,54,0.14);
  --border-subtle:rgba(14,14,14,0.08);
  --shadow-soft:0 24px 70px rgba(23,42,54,0.12);
  --radius-xl:28px;
  --radius-lg:18px;
  --radius-md:12px;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Poppins',Arial,sans-serif !important;
  background:var(--deep) !important;
  color:var(--text-primary) !important;
  overflow-x:hidden;
  line-height:1.75;
  font-weight:300;
}

body::before{
  content:'';
  position:fixed;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(circle at 12% 8%, rgba(234,241,244,0.9), transparent 26rem),
    linear-gradient(180deg,#fff 0%,#f8faf8 46%,#fff 100%);
}

img{max-width:100%;height:auto;}
a{color:inherit;}
a:hover{color:var(--gold);}

/* NAV */
nav{
  position:fixed !important;
  top:0;left:0;right:0;z-index:100;
  padding:1.15rem clamp(1.2rem,4vw,4rem) !important;
  display:flex;align-items:center;justify-content:space-between;gap:1.2rem;
  background:rgba(255,255,255,0.9) !important;
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(14,14,14,0.06) !important;
  box-shadow:0 12px 34px rgba(23,42,54,0.07);
}
.nav-logo{text-decoration:none;flex-shrink:0;display:inline-flex;align-items:center;gap:0.55rem;}
.nav-logo .logo-mark{
  display:grid;place-items:center;flex-shrink:0;
  width:38px;height:38px;border-radius:50%;
  background:var(--gold);color:#fff;
  font-family:'Poppins',Arial,sans-serif;
  font-size:0.66rem;font-weight:600;letter-spacing:0.005em;line-height:1;font-style:normal;
}
.nav-logo .logo-text{
  font-family:'Poppins',Arial,sans-serif !important;
  font-size:1.05rem;font-weight:700;color:var(--text-primary) !important;
  letter-spacing:0.02em;line-height:1;font-style:normal;
}
.nav-logo .logo-colon{opacity:0.45;font-weight:500;}
.nav-logo .logo-word{
  font-family:'Poppins',Arial,sans-serif !important;
  font-size:0.72rem;font-weight:500;color:var(--text-primary) !important;
  letter-spacing:0.28em;text-transform:uppercase;font-style:normal;opacity:0.74;
  padding-left:0.55rem;line-height:1;
}
.nav-links{display:flex;align-items:center;gap:clamp(0.9rem,1.8vw,1.8rem);list-style:none;}
.nav-links li{list-style:none;}
.nav-links a,
.nav-links a:visited{
  font-family:'Poppins',Arial,sans-serif !important;
  font-size:0.72rem;letter-spacing:0.08em;text-transform:uppercase;
  color:var(--text-primary) !important;font-weight:500;text-decoration:none;
  transition:color 0.2s,opacity 0.2s;white-space:nowrap;font-style:normal;
}
.nav-links a:hover,.nav-links a.active{color:var(--gold) !important;opacity:0.72;}
.nav-cta,
.btn-primary,
.hero-btn,
.join-form button{
  font-family:'Poppins',Arial,sans-serif !important;
  font-size:0.72rem !important;letter-spacing:0.09em;text-transform:uppercase;font-weight:500 !important;
  font-style:normal;padding:0.72rem 1.35rem !important;border-radius:999px !important;
  text-decoration:none;white-space:nowrap;transition:all 0.2s;display:inline-flex;align-items:center;justify-content:center;
  background:var(--text-primary) !important;color:#fff !important;border:1px solid var(--text-primary) !important;
}
.nav-cta:hover,.btn-primary:hover,.hero-btn:hover,.join-form button:hover{
  background:var(--gold) !important;border-color:var(--gold) !important;color:#fff !important;
  transform:translateY(-1px);
}
.btn-ghost{
  font-family:'Poppins',Arial,sans-serif !important;font-size:0.72rem;letter-spacing:0.09em;
  text-transform:uppercase;font-weight:500;font-style:normal;padding:0.72rem 1.35rem;
  border-radius:999px;text-decoration:none;white-space:nowrap;transition:all 0.2s;display:inline-flex;
  background:#fff;color:var(--text-primary);border:1px solid var(--border);
}
.btn-ghost:hover{background:var(--surface-light);border-color:rgba(23,42,54,0.24);}

/* NAV DROPDOWN */
.nav-item{position:relative;list-style:none;}
.nav-item>a{display:inline-flex;align-items:center;gap:4px;}
.nav-item .caret{font-size:0.5rem;opacity:0.5;transition:transform 0.2s;}
.nav-item.open .caret{transform:rotate(180deg);}
.nav-dropdown{
  display:none;position:absolute;top:calc(100% + 4px);left:50%;transform:translateX(-50%);
  background:rgba(255,255,255,0.98) !important;border:1px solid var(--border) !important;
  backdrop-filter:blur(18px);min-width:190px;z-index:200;padding:0.65rem;border-radius:16px;
  box-shadow:0 20px 55px rgba(23,42,54,0.14);
}
.nav-dropdown::before{
  content:'';position:absolute;top:-18px;left:-16px;right:-16px;height:22px;
}
.nav-item.open .nav-dropdown{display:block;}
@media (min-width:861px){
  .nav-item:hover .nav-dropdown,.nav-item:focus-within .nav-dropdown{display:block;}
}
.nav-dropdown a{
  position:relative;display:block;padding:0.65rem 0.8rem;border-radius:10px;font-size:0.68rem;letter-spacing:0.08em;
  text-transform:uppercase;color:var(--text-primary) !important;font-weight:400;text-decoration:none;
  transition:all 0.15s;white-space:nowrap;font-style:normal;
}
.nav-dropdown a:hover{color:var(--text-primary) !important;background:var(--surface-light) !important;}

/* HAMBURGER + MOBILE MENU */
.nav-hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;padding:4px;flex-shrink:0;}
.nav-hamburger span{display:block;width:22px;height:1.5px;background:var(--text-primary) !important;}
.mobile-menu{
  display:none;position:fixed;top:0;left:0;right:0;bottom:0;
  background:rgba(255,255,255,0.98) !important;z-index:150;flex-direction:column;align-items:center;
  justify-content:flex-start;padding:5rem 2rem 3rem;overflow-y:auto;
}
.mobile-menu.open{display:flex;}
.mobile-menu a{
  font-family:'Poppins',Arial,sans-serif !important;font-size:1.15rem !important;font-weight:400 !important;
  color:var(--text-primary) !important;text-decoration:none;letter-spacing:0.02em;padding:0.9rem 0;
  border-bottom:1px solid var(--border-subtle) !important;width:100%;text-align:center;transition:color 0.2s;
}
.mobile-menu a:hover{color:var(--gold) !important;}
.mobile-close{position:absolute;top:1.5rem;right:1.5rem;background:none;border:none;color:var(--text-muted);font-size:1.8rem;cursor:pointer;line-height:1;}

/* PAGE HEADER */
.page-header{
  padding:10rem 2rem 5.5rem !important;
  background:
    linear-gradient(rgba(255,255,255,0.78),rgba(255,255,255,0.86)),
    url('hero-bg.jpg') center/cover no-repeat !important;
  border-bottom:1px solid var(--border-subtle) !important;
  text-align:center;position:relative;overflow:hidden;
}
.page-header::after{
  content:'';position:absolute;inset:auto 8% -64px auto;width:220px;height:220px;border-radius:50%;
  background:rgba(234,241,244,0.85);pointer-events:none;
}
.page-header .eyebrow,
.page-header h1,
.page-header p{position:relative;z-index:1;}
.eyebrow,
.section-label{
  font-family:'Poppins',Arial,sans-serif !important;
  font-size:0.78rem !important;letter-spacing:0.04em !important;text-transform:none !important;
  color:var(--text-secondary) !important;margin-bottom:1rem;display:flex;align-items:center;gap:0.75rem;
  font-weight:400;opacity:1 !important;
}
.page-header .eyebrow{justify-content:center;}
.eyebrow::before,.eyebrow::after{display:none !important;}
.page-header h1,
h1,h2,h3,h5,h6,
.section-title{
  font-family:'Poppins',Arial,sans-serif !important;
  color:var(--text-primary) !important;
  font-style:normal !important;
  font-weight:500 !important;
  letter-spacing:-0.035em;
  line-height:1.08;
}
footer h4,
footer .footer-col h4{
  font-family:'Poppins',Arial,sans-serif !important;
  color:#fff !important;
  font-style:normal !important;
  font-weight:500 !important;
  letter-spacing:0.2em !important;
  text-transform:uppercase !important;
  line-height:1.3;
}
.page-header h1{font-size:clamp(3rem,7vw,6rem) !important;max-width:980px;margin:0 auto;}
.page-header h1 em,
.section-title em,
h1 em,h2 em,h3 em{font-style:normal !important;color:var(--text-primary) !important;}
.page-header p{
  color:var(--text-secondary) !important;font-size:clamp(1rem,1.5vw,1.2rem);
  max-width:680px;margin:1.35rem auto 0;line-height:1.75;font-weight:300;
}

/* SHARED SECTIONS */
section{padding:7rem 2rem;}
.container{max-width:1120px;margin:0 auto;}
.section-title{font-size:clamp(2.25rem,5vw,4.8rem) !important;margin-bottom:1.5rem;}
p,li,td,th{
  font-family:'Poppins',Arial,sans-serif !important;
  color:var(--text-secondary);
  line-height:1.78;
  font-weight:300;
}
strong{font-weight:500;color:var(--text-primary);}
em{font-style:italic;}

/* CONTENT SURFACES */
.about,.community,.practices,.join,.cta-box,
.qa-body,.story-body,.cosmo-body,.maps-body,.ref-body,.resources-body,.post-body,.body-wrap{
  background:var(--deep) !important;
}
.about,.community,.practices,.join{
  border-top:1px solid var(--border-subtle) !important;
  border-bottom:1px solid var(--border-subtle) !important;
}
.beliefs,.blog,.gathering{background:var(--deep-mid) !important;}
.dual-verse,.belief-card,.community-card,.practice-card,.blog-card,.post-card,.post-featured,
.resource-card,.map-card,.diag-card,.prod-card,.card-grid .card,.qa-item,.cta-box,
.foundation-verse,.pull,blockquote{
  background:var(--surface) !important;
  border:1px solid var(--border) !important;
  border-radius:var(--radius-lg) !important;
  box-shadow:0 16px 42px rgba(23,42,54,0.07);
}
.belief-card:hover,.community-card:hover,.practice-card:hover,.blog-card:hover,.post-card:hover,.post-featured:hover,
.resource-card:hover,.map-card:hover{background:var(--surface-light) !important;}
.beliefs-grid,.community-grid,.blog-grid,.posts-grid,.card-grid{
  background:transparent !important;
  gap:1.25rem !important;
  border:0 !important;
}
.dual-verse,.belief-card,.community-card,.practice-card,.blog-card-body,.post-card .pc-body,.post-featured .pf-body,
.resource-card,.map-body,.diag-body,.prod-body,.card-grid .card{padding:clamp(1.35rem,2.4vw,2.4rem) !important;}

/* TEXT + META */
blockquote{
  font-family:'Poppins',Arial,sans-serif !important;
  font-size:1rem;
  font-style:normal;
  color:var(--text-primary);
  border-left:5px solid var(--gold) !important;
  padding:1.25rem 1.5rem;
  margin:1.8rem 0;
  line-height:1.75;
}
blockquote cite,blockquote footer,.bs-ref,.vc-ref,.cc-label,.pf-label,.blog-tag,.blog-read,.post-count span,
.qa-group-title{
  font-family:'Poppins',Arial,sans-serif !important;
  color:var(--gold) !important;
  font-weight:500;
  letter-spacing:0.04em !important;
  text-transform:none !important;
}
.blog-tag{
  background:var(--gold-light) !important;
  padding:0.35rem 0.7rem;border-radius:999px;
}
.blog-date,.post-count,.cc-note,.footer-brand p,.footer-verse{color:var(--text-muted) !important;}
.story-body a,.cosmo-body a,.ref-body a,article a,.qa-answer a,.blog-content a{color:var(--gold);text-decoration:none;font-weight:500;}

/* IMAGES */
.photo-slot,.blog-card-img,.post-featured .pf-img,.post-card .pc-img,.map-img{
  border-radius:var(--radius-lg) !important;
  overflow:hidden;
  background:var(--surface-light) !important;
}
.photo-slot img,.blog-card-img img,.post-featured .pf-img img,.post-card .pc-img img,.map-img img{
  filter:saturate(0.95) brightness(1) !important;
}
.blog-card-img img[src*=".svg"],.post-featured .pf-img img[src*=".svg"],.post-card .pc-img img[src*=".svg"],
.blog-card-img img[src*="vedic-witness-christ"],.post-featured .pf-img img[src*="vedic-witness-christ"],.post-card .pc-img img[src*="vedic-witness-christ"]{
  object-fit:contain !important;
  padding:1rem !important;
  background:var(--deep-mid) !important;
}
.photo-slot:hover img,.blog-card:hover .blog-card-img img,.post-featured:hover .pf-img img,.post-card:hover .pc-img img{
  filter:saturate(1.03) brightness(1) !important;
}

/* FORMS + DIVIDERS */
.join-form{
  border:1px solid var(--border) !important;
  border-radius:999px !important;
  overflow:hidden;background:#fff;box-shadow:0 12px 32px rgba(23,42,54,0.08);
}
.join-form input[type="email"]{
  font-family:'Poppins',Arial,sans-serif !important;
  color:var(--text-primary) !important;
}
.golden-divider::before,.golden-divider::after,.hr-gold::before,.hr-gold::after{background:var(--border) !important;}
.golden-divider span,.hr-gold span{font-family:'Poppins',Arial,sans-serif !important;color:var(--gold) !important;}

/* FOOTER */
footer{
  background:var(--gold-dark) !important;
  color:#fff;border-top:0;padding:4.5rem 2rem 2.5rem;
}
.footer-grid{max-width:1120px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;padding-bottom:3rem;border-bottom:1px solid rgba(255,255,255,0.14);}
footer .nav-logo .logo-word{color:#fff !important;}
footer .nav-logo .logo-mark{background:#fff !important;color:var(--gold) !important;}
.footer-brand p,.footer-col ul li a,.footer-bottom,.footer-verse,.footer-yt{color:rgba(255,255,255,0.68) !important;}
.footer-col h4{font-size:0.68rem;margin-bottom:1.2rem;}
.footer-col ul{list-style:none;}
.footer-col ul li{margin-bottom:0.65rem;}
.footer-col ul li a{font-size:0.85rem;text-decoration:none;transition:color 0.2s;}
.footer-col ul li a:hover{color:#fff !important;}
.footer-bottom{max-width:1120px;margin:2rem auto 0;display:flex;align-items:center;justify-content:space-between;font-size:0.78rem;flex-wrap:wrap;gap:0.5rem;}
.footer-social{display:flex;align-items:center;gap:0.5rem;margin:0.5rem 0 1rem;line-height:0;}
.footer-social a{flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;padding:0;border-radius:50%;border:1px solid rgba(255,255,255,0.22);color:rgba(255,255,255,0.8) !important;text-decoration:none;transition:background 0.2s,color 0.2s,border-color 0.2s,transform 0.2s;}
.footer-social a:hover{background:#fff;color:var(--gold-dark) !important;border-color:#fff;transform:translateY(-1px);}
.footer-social svg{width:15px;height:15px;fill:currentColor;display:block;}

/* BLOG WAITING LIST */
.blog-queue{padding:3rem 2rem 6rem;max-width:1100px;margin:0 auto;}
.blog-queue-inner{border:0.5px solid var(--border);background:var(--surface);}
.blog-queue-head{padding:2.5rem 2.8rem 2rem;border-bottom:0.5px solid var(--border-subtle);background:var(--surface-light);}
.blog-queue-head .eyebrow{font-size:0.65rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--gold);margin-bottom:0.75rem;}
.blog-queue-head h2{font-family:'Poppins',Arial,sans-serif;font-size:clamp(1.6rem,3vw,2.2rem);font-weight:300;line-height:1.2;margin-bottom:0.6rem;color:var(--text-primary);}
.blog-queue-head h2 em{font-style:italic;color:var(--gold);}
.blog-queue-head p{font-size:0.88rem;color:var(--text-secondary);max-width:640px;line-height:1.75;}
.queue-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5px;background:var(--border);}
.queue-card{background:var(--surface);padding:1.5rem 1.4rem 1.6rem;display:flex;flex-direction:column;gap:0.65rem;min-height:168px;transition:background 0.2s;}
.queue-card:hover{background:var(--surface-light);}
.queue-card-top{display:flex;align-items:center;justify-content:space-between;gap:0.75rem;}
.queue-num{font-size:0.68rem;letter-spacing:0.14em;color:var(--gold);font-weight:500;}
.queue-soon{font-size:0.6rem;letter-spacing:0.14em;text-transform:uppercase;color:var(--text-muted);border:0.5px solid var(--border);padding:0.22rem 0.55rem;border-radius:2px;white-space:nowrap;}
.queue-card h3{font-family:'Poppins',Arial,sans-serif;font-size:1.02rem;font-weight:500;line-height:1.35;color:var(--text-primary);}
.queue-card p{font-size:0.82rem;color:var(--text-secondary);line-height:1.75;flex:1;}
.queue-tag{font-size:0.6rem;letter-spacing:0.14em;text-transform:uppercase;color:var(--gold);background:rgba(23,42,54,0.08);padding:0.22rem 0.55rem;border-radius:2px;display:inline-block;align-self:flex-start;}

/* RESPONSIVE */
@media(max-width:980px){
  nav{padding:1rem 1.4rem !important;}
  .nav-links,.nav-cta{display:none !important;}
  .nav-hamburger{display:flex;}
  section{padding:5rem 1.2rem;}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem;}
  .footer-brand{grid-column:1/-1;}
  .footer-bottom{flex-direction:column;gap:0.5rem;text-align:center;}
  .page-header{padding:7.5rem 1.2rem 3.8rem !important;}
  .queue-grid{grid-template-columns:repeat(2,1fr);}
  .blog-queue{padding:0 1.2rem 5rem;}
  .blog-queue-head{padding:1.8rem 1.4rem 1.5rem;}
}
@media(max-width:640px){
  .footer-grid{grid-template-columns:1fr;}
  .join-form{border-radius:24px !important;flex-direction:column;}
  .join-form button{width:100%;}
  .queue-grid{grid-template-columns:1fr;}
}
