/* ═══════════════════════════════════════════════════════════════════
   BhaktiBharat.org — site.css
   Shared stylesheet for ALL pages (homepage + article pages)
   Path: /assets/css/site.css
═══════════════════════════════════════════════════════════════════ */

/* ── RESET & CSS VARIABLES ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold:       #c8972a;
  --gold-lt:    #e8b84b;
  --gold-pale:  #f5e4b0;
  --saffron:    #d4560a;
  --saffron-lt: #f07030;
  --deep:       #0a0400;
  --dark:       #150800;
  --dark2:      #1e0c04;
  --cream:      #fdf7ed;
  --cream2:     #f5e8ce;
  --txt:        #1a0900;
  --muted:      #6b4a20;
  --bdr:        rgba(200,151,42,.22);
  --bdrs:       rgba(200,151,42,.5);
  --D: 'Cinzel Decorative', serif;
  --H: 'Cinzel', serif;
  --B: 'Lora', serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--B); background: var(--cream); color: var(--txt); overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; }

/* ── TOPBAR ─────────────────────────────────────────────────────────── */
.topbar {
  background: var(--dark);
  color: var(--gold-pale);
  text-align: center;
  padding: 9px 20px;
  font-family: var(--H);
  font-size: .72rem;
  letter-spacing: .12em;
}
.topbar a { color: var(--gold-lt); text-decoration: none; border-bottom: 1px solid rgba(232,184,75,.3); }
.topbar a:hover { color: #fff; }

/* ── HOMEPAGE NAV ───────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(21,8,0,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bdrs);
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
}
.logo {
  font-family: var(--D); font-size: 1.1rem; color: var(--gold-lt);
  text-decoration: none; display: flex; align-items: center; gap: 10px;
}
.logo-om { font-size: 1.8rem; color: var(--saffron-lt); line-height: 1; animation: omPulse 4s ease-in-out infinite; }
@keyframes omPulse {
  0%, 100% { text-shadow: 0 0 8px rgba(240,112,48,.3); }
  50%       { text-shadow: 0 0 20px rgba(240,112,48,.7); }
}
.navlinks { display: flex; gap: 2px; list-style: none; }
.navlinks a {
  color: rgba(245,228,176,.8); text-decoration: none;
  font-family: var(--H); font-size: .7rem; letter-spacing: .08em;
  padding: 6px 11px; border-radius: 4px;
  transition: all .2s; text-transform: uppercase;
}
.navlinks a:hover, .navlinks a.active { color: var(--gold-lt); background: rgba(200,151,42,.12); }
.hbg { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hbg span { display: block; width: 24px; height: 2px; background: var(--gold-pale); border-radius: 2px; }

/* ── ARTICLE PAGE HEADER ────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(21,8,0,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bdrs);
  padding: 0 5vw; height: 70px;
  display: flex; align-items: center;
}
.site-header__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  width: 100%; max-width: 1260px; margin: 0 auto;
}
.site-logo {
  font-family: var(--D); font-size: 1rem;
  color: var(--gold-lt); text-decoration: none;
}
.site-nav__list { display: flex; gap: 2px; list-style: none; }
.site-nav__list a {
  color: rgba(245,228,176,.8); text-decoration: none;
  font-family: var(--H); font-size: .7rem; letter-spacing: .08em;
  padding: 6px 11px; border-radius: 4px;
  transition: all .2s; text-transform: uppercase;
}
.site-nav__list a:hover, .site-nav__list a.active {
  color: var(--gold-lt); background: rgba(200,151,42,.12);
}

/* ── HERO ───────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 96vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #05020e;
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,rgba(5,2,14,.1) 0%,rgba(5,2,14,.4) 50%,rgba(5,2,14,.97) 100%);
  z-index: 1;
}
.hero-c {
  position: relative; z-index: 2; text-align: center;
  padding: 40px 24px; max-width: 900px;
  animation: heroIn 1.6s ease both;
}
@keyframes heroIn { from { opacity:0; transform:translateY(50px); } to { opacity:1; transform:translateY(0); } }
.h-om { font-size: 5rem; color: var(--saffron-lt); display: block; margin-bottom: 14px; animation: omGlow 5s ease-in-out infinite; }
@keyframes omGlow {
  0%, 100% { text-shadow: 0 0 30px rgba(240,112,48,.5), 0 0 60px rgba(200,151,42,.2); }
  50%       { text-shadow: 0 0 80px rgba(240,112,48,1), 0 0 160px rgba(200,151,42,.6), 0 0 200px rgba(240,112,48,.3); }
}
.h-kick { font-family: var(--H); font-size: .72rem; letter-spacing: .45em; color: var(--gold); text-transform: uppercase; margin-bottom: 18px; }
.hero h1 { font-family: var(--D); font-size: clamp(1.8rem,5vw,3.8rem); color: var(--gold-pale); line-height: 1.18; margin-bottom: 10px; }
.h-sub   { font-family: var(--D); font-size: clamp(.9rem,2vw,1.35rem); color: var(--saffron-lt); margin-bottom: 20px; }
.dvdr { display: flex; align-items: center; gap: 14px; justify-content: center; margin: 16px 0 24px; }
.dvdr::before, .dvdr::after { content: ''; flex: 1; max-width: 80px; height: 1px; }
.dvdr::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.dvdr::after  { background: linear-gradient(270deg, transparent, var(--gold)); }
.dvdr span { color: var(--gold); }
.h-desc { font-size: 1rem; color: rgba(245,228,176,.7); line-height: 1.85; max-width: 600px; margin: 0 auto 32px; }
.h-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-p {
  background: linear-gradient(135deg,var(--saffron),var(--gold));
  color: var(--deep); padding: 14px 36px;
  font-family: var(--H); font-size: .78rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none; border-radius: 4px;
  transition: all .25s; display: inline-block;
}
.btn-p:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(200,151,42,.45); }
.btn-g {
  border: 1px solid var(--bdrs); color: var(--gold-pale);
  padding: 14px 36px; font-family: var(--H); font-size: .78rem;
  letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none; border-radius: 4px;
  transition: all .25s; display: inline-block;
}
.btn-g:hover { background: rgba(200,151,42,.1); border-color: var(--gold-lt); }
.scarr-w {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(245,228,176,.28); font-family: var(--H); font-size: .58rem;
  letter-spacing: .22em; text-transform: uppercase;
}
.scarr {
  width: 16px; height: 16px;
  border-right: 1px solid rgba(200,151,42,.35);
  border-bottom: 1px solid rgba(200,151,42,.35);
  transform: rotate(45deg); animation: sa 2s ease-in-out infinite;
}
@keyframes sa {
  0%, 100% { transform: rotate(45deg) translate(0,0); }
  50%       { transform: rotate(45deg) translate(3px,3px); }
}

/* ── PANCHANG ───────────────────────────────────────────────────────── */
.panchang {
  background: var(--dark2); border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.pi  { text-align: center; padding: 16px 26px; }
.pi + .pi { border-left: 1px solid var(--bdr); }
.pl  { font-family: var(--H); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 5px; }
.pv  { font-size: .9rem; color: var(--gold-pale); }

/* ── SECTION LABELS ─────────────────────────────────────────────────── */
.stag {
  font-family: var(--H); font-size: .68rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 10px;
  display: flex; align-items: center; gap: 12px;
}
.stag::before, .stag::after { content: ''; height: 1px; width: 26px; background: var(--saffron); opacity: .5; }
.stitle { font-family: var(--D); font-size: clamp(1.5rem,3.5vw,2.4rem); color: var(--txt); margin-bottom: 10px; }
.sintro { font-size: .97rem; color: var(--muted); line-height: 1.85; max-width: 560px; }

/* ── CATEGORY CARDS ─────────────────────────────────────────────────── */
.cats   { padding: 88px 5vw; background: var(--cream); }
.cats-h { text-align: center; margin-bottom: 52px; }
.cats-h .stag { justify-content: center; }
.cgrid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(270px,1fr));
  gap: 24px; max-width: 1260px; margin: 0 auto;
}
.ccard {
  background: #fff; border: 1px solid var(--bdr); border-radius: 10px;
  overflow: hidden; text-decoration: none; color: inherit;
  transition: all .35s; display: flex; flex-direction: column; position: relative;
}
.ccard::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,var(--saffron),var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.ccard:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(200,151,42,.18); border-color: var(--gold); }
.ccard:hover::after { transform: scaleX(1); }
.cscene  { width: 100%; height: 200px; display: block; background: #08040e; }
.cbody   { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.cico    { font-size: 1.5rem; margin-bottom: 10px; }
.ccard h3 { font-family: var(--H); font-size: .95rem; color: var(--txt); margin-bottom: 7px; letter-spacing: .04em; }
.ccard p  { font-size: .84rem; color: var(--muted); line-height: 1.75; flex: 1; }
.clink    { margin-top: 14px; font-family: var(--H); font-size: .67rem; letter-spacing: .15em; text-transform: uppercase; color: var(--saffron); display: flex; align-items: center; gap: 5px; }
.clink::after { content: '→'; transition: transform .2s; }
.ccard:hover .clink::after { transform: translateX(5px); }

/* ── DEITY GRID ─────────────────────────────────────────────────────── */
.deities   { padding: 80px 5vw; background: var(--cream2); border-top: 1px solid var(--bdr); }
.deities-h { text-align: center; margin-bottom: 44px; }
.deities-h .stag { justify-content: center; }
.dgrid { display: grid; grid-template-columns: repeat(auto-fill,minmax(155px,1fr)); gap: 16px; max-width: 1200px; margin: 0 auto; }
.dc { background: #fff; border: 1px solid var(--bdr); border-radius: 8px; overflow: hidden; text-decoration: none; color: inherit; transition: all .25s; text-align: center; }
.dc:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 10px 32px rgba(200,151,42,.18); }
.dscene { width: 100%; height: 130px; display: block; background: #08040e; }
.dname  { font-family: var(--H); font-size: .78rem; color: var(--txt); padding: 11px 8px; background: #fff; letter-spacing: .04em; }

/* ── YOUTUBE SECTION ────────────────────────────────────────────────── */
.yt { padding: 80px 5vw; background: var(--dark); border-top: 1px solid var(--bdr); text-align: center; }
.yt .stitle { color: var(--gold-pale); }
.yt .sintro { color: rgba(245,228,176,.58); margin: 0 auto 42px; }
.yt .stag { justify-content: center; color: var(--saffron-lt); }
.yt .stag::before, .yt .stag::after { background: var(--saffron-lt); }
.ytgrid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 22px; max-width: 1100px; margin: 0 auto 38px; }
.ytcard { border-radius: 8px; overflow: hidden; border: 1px solid var(--bdr); background: var(--dark2); cursor: pointer; transition: transform .25s; }
.ytcard:hover { transform: translateY(-3px); }
.yt-thumb { width: 100%; aspect-ratio: 16/9; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; position: relative; }
.yt-play { background: rgba(0,0,0,.5); border-radius: 50%; padding: 10px; transition: all .2s; display: flex; align-items: center; justify-content: center; }
.ytcard:hover .yt-play { background: rgba(255,0,0,.85); transform: scale(1.1); }
.ytcard-label { font-family: var(--H); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); padding: 12px 16px; border-top: 1px solid var(--bdr); }
.yt-sub { display: inline-flex; align-items: center; gap: 10px; background: #ff0000; color: #fff; padding: 14px 32px; border-radius: 4px; font-family: var(--H); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; transition: all .25s; }
.yt-sub:hover { background: #c00; transform: translateY(-2px); }

/* ── EMAIL SECTION ──────────────────────────────────────────────────── */
.email-s { background: var(--dark2); border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); padding: 52px 5vw; text-align: center; }
.email-s h3 { font-family: var(--D); font-size: clamp(1.2rem,2.5vw,1.75rem); color: var(--gold-pale); margin-bottom: 10px; }
.email-s p  { color: rgba(245,228,176,.5); font-size: .9rem; margin-bottom: 26px; }
.eform { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; max-width: 500px; margin: 0 auto; }
.eform input { flex: 1; min-width: 220px; padding: 13px 16px; background: rgba(255,255,255,.07); border: 1px solid var(--bdrs); border-radius: 4px; color: var(--gold-pale); font-family: var(--B); font-size: .9rem; }
.eform input::placeholder { color: rgba(245,228,176,.3); }
.eform input:focus { outline: none; border-color: var(--gold); }
.eform button {
  background: linear-gradient(135deg,var(--saffron),var(--gold)); color: var(--deep);
  border: none; padding: 13px 26px; border-radius: 4px;
  font-family: var(--H); font-size: .75rem; letter-spacing: .12em;
  text-transform: uppercase; cursor: pointer; font-weight: 600;
  transition: all .25s; white-space: nowrap;
}
.eform button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,151,42,.4); }
.esuccess { display: none; color: var(--gold-lt); font-family: var(--H); font-size: .82rem; margin-top: 12px; }

/* ── QUICK LINKS BANNER ─────────────────────────────────────────────── */
.qban   { background: linear-gradient(135deg,var(--saffron),var(--gold)); padding: 56px 5vw; text-align: center; }
.qban h2 { font-family: var(--D); font-size: clamp(1.3rem,3vw,2rem); color: var(--deep); margin-bottom: 8px; }
.qban p  { color: rgba(10,4,0,.55); margin-bottom: 26px; font-size: .93rem; }
.qrow { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.qb {
  background: rgba(10,4,0,.1); border: 1px solid rgba(10,4,0,.18); color: var(--deep);
  padding: 10px 20px; border-radius: 4px; text-decoration: none;
  font-family: var(--H); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; transition: all .2s;
}
.qb:hover { background: rgba(10,4,0,.2); transform: translateY(-2px); }

/* ── HOMEPAGE FOOTER ────────────────────────────────────────────────── */
footer { background: var(--deep); border-top: 1px solid var(--bdr); padding: 60px 5vw 30px; }
.fgrid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; max-width: 1200px; margin: 0 auto 44px; }
.fblogo { font-family: var(--D); font-size: 1rem; color: var(--gold-lt); display: block; margin-bottom: 12px; text-decoration: none; }
.fb p { font-size: .83rem; color: rgba(245,228,176,.4); line-height: 1.85; }
.fc h4 { font-family: var(--H); font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.fc ul { list-style: none; }
.fc li { margin-bottom: 8px; }
.fc a  { font-size: .83rem; color: rgba(245,228,176,.4); text-decoration: none; transition: color .2s; }
.fc a:hover { color: var(--gold-lt); }
.fbot { max-width: 1200px; margin: 0 auto; padding-top: 20px; border-top: 1px solid var(--bdr); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.fbot p, .fbot a { font-family: var(--H); font-size: .64rem; letter-spacing: .08em; color: rgba(245,228,176,.22); text-decoration: none; }
.fbot a:hover { color: var(--gold); }

/* ── ARTICLE PAGE FOOTER ────────────────────────────────────────────── */
.site-footer { background: var(--deep); border-top: 1px solid var(--bdr); padding: 28px 5vw; text-align: center; }
.site-footer p, .site-footer a { font-family: var(--H); font-size: .68rem; letter-spacing: .08em; color: rgba(245,228,176,.3); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }

/* ── BREADCRUMB BAR ─────────────────────────────────────────────────── */
.breadcrumb-bar { background: var(--dark2); border-bottom: 1px solid var(--bdr); padding: 12px 5vw; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; list-style: none; font-family: var(--H); font-size: .65rem; letter-spacing: .08em; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; color: rgba(245,228,176,.35); }
.breadcrumb li::after { content: '›'; color: rgba(200,151,42,.4); }
.breadcrumb li:last-child { color: var(--gold); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: rgba(245,228,176,.5); text-decoration: none; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--gold-lt); }

/* ── ARTICLE PAGE LAYOUT ────────────────────────────────────────────── */
.container { max-width: 1260px; margin: 0 auto; padding: 0 5vw; }
.page-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding: 40px 5vw; max-width: 1260px; margin: 0 auto; align-items: start; }
.main-content { min-width: 0; }

/* ── ARTICLE TYPOGRAPHY ─────────────────────────────────────────────── */
article h1 {
  font-family: var(--D); font-size: clamp(1.6rem,3.5vw,2.6rem);
  color: var(--txt); line-height: 1.2; margin-bottom: 20px;
}
article .article-intro {
  font-size: 1.08rem; color: var(--muted); line-height: 1.9;
  border-left: 3px solid var(--gold); padding-left: 18px;
  margin-bottom: 32px; font-style: italic;
}
article h2 {
  font-family: var(--H); font-size: clamp(1.15rem,2.5vw,1.6rem);
  color: var(--txt); margin: 40px 0 14px; padding-top: 8px;
  border-top: 1px solid var(--bdr);
}
article h2:first-of-type { border-top: none; margin-top: 0; }
article h3 { font-family: var(--H); font-size: 1.05rem; color: var(--saffron); margin: 26px 0 10px; }
article p  { font-size: .97rem; line-height: 1.9; color: #2a1600; margin-bottom: 18px; }
article p:last-child { margin-bottom: 0; }
article strong { color: var(--txt); font-weight: 600; }
article a { color: var(--saffron); text-decoration: underline; text-decoration-color: rgba(212,86,10,.35); }
article a:hover { color: var(--saffron-lt); }
article ul, article ol { padding-left: 1.4em; margin-bottom: 18px; }
article li { font-size: .97rem; line-height: 1.85; margin-bottom: 6px; }

/* ── BANNERS ────────────────────────────────────────────────────────── */
.banner { margin: 32px 0; border-radius: 6px; overflow: hidden; border: 1px solid var(--bdr); }
.banner img { width: 100%; object-fit: cover; max-height: 120px; }

/* ── FAQ SECTION ────────────────────────────────────────────────────── */
.faq-section { margin: 10px 0 30px; }
.faq-item {
  border: 1px solid var(--bdr); border-radius: 6px;
  padding: 20px 22px; margin-bottom: 14px;
  background: rgba(253,247,237,.6);
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--bdrs); }
.faq-item h3 {
  font-family: var(--H); font-size: .92rem; color: var(--txt);
  margin-bottom: 10px; letter-spacing: .03em;
}
.faq-item p { font-size: .92rem; line-height: 1.85; color: var(--muted); margin: 0; }

/* ── INTERNAL LINKS BOX ─────────────────────────────────────────────── */
.internal-links-box {
  background: var(--cream2); border: 1px solid var(--bdr);
  border-radius: 8px; padding: 24px 26px; margin: 36px 0;
}
.internal-links-box h2 {
  font-family: var(--H); font-size: .8rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
  padding: 0; border: none; margin-top: 0;
}
.internal-links-box ul { list-style: none; padding: 0; margin: 0; }
.internal-links-box li { margin-bottom: 9px; }
.internal-links-box a {
  color: var(--saffron); font-size: .9rem; text-decoration: none;
  font-family: var(--H); letter-spacing: .03em;
  display: flex; align-items: center; gap: 7px;
  transition: color .2s;
}
.internal-links-box a::before { content: '›'; color: var(--gold); }
.internal-links-box a:hover { color: var(--saffron-lt); }

/* ── SIDEBAR ────────────────────────────────────────────────────────── */
.sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  background: #fff; border: 1px solid var(--bdr); border-radius: 8px;
  padding: 20px; margin-bottom: 20px;
}
.sidebar-widget h3 {
  font-family: var(--H); font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--bdr);
}
.sidebar-widget ul { list-style: none; padding: 0; margin: 0; }
.sidebar-widget li { margin-bottom: 8px; }
.sidebar-widget a {
  font-size: .84rem; color: var(--muted); text-decoration: none;
  display: flex; align-items: center; gap: 6px; transition: color .2s;
}
.sidebar-widget a::before { content: '·'; color: var(--gold); font-weight: bold; }
.sidebar-widget a:hover { color: var(--saffron); }

/* ── AD UNITS ───────────────────────────────────────────────────────── */
.bb-ad { margin: 24px 0; min-height: 90px; text-align: center; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 900px) {
  .navlinks  { display: none; }
  .navlinks.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(21,8,0,.99);
    padding: 14px; gap: 4px;
    border-bottom: 1px solid var(--bdr); z-index: 199;
  }
  .hbg { display: flex; }
  .site-nav__list { display: none; }
  .site-nav__list.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(21,8,0,.99);
    padding: 14px; gap: 4px;
    border-bottom: 1px solid var(--bdr); z-index: 199;
  }
  .fgrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .page-layout { padding: 24px 5vw; gap: 24px; }
  .sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .fgrid   { grid-template-columns: 1fr; }
  .fbot    { flex-direction: column; text-align: center; }
  .h-btns  { flex-direction: column; align-items: center; }
  .pi + .pi { border-left: none; border-top: 1px solid var(--bdr); }
  .banner img { max-height: 80px; }
}
