/**
 * LDH Global CSS — loads on EVERY page of the site
 * Handles: premium header, saffron nav, fonts, body bg, inner pages
 *
 * ldh-homepage.css handles homepage-only layout on top of this.
 */

/* ── Google Fonts via CSS (fallback if not in <head>) ────────── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;900&family=Poppins:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ══════════════════════════════════════════════════════════════
   SITE-WIDE TOKENS
══════════════════════════════════════════════════════════════ */
:root {
  --ldh-saffron:   #FF6B00;
  --ldh-gold:      #D4AF37;
  --ldh-gold-lt:   #FFD060;
  --ldh-maroon:    #2A0800;
  --ldh-deep:      #0D0200;
  --ldh-warm-bg:   #FFF9F2;
  --ldh-border:    rgba(255,140,0,.18);
  --ldh-font-head: 'Cinzel', Georgia, serif;
  --ldh-font-body: 'DM Sans', 'Poppins', system-ui, sans-serif;
}

/* Prevent horizontal scroll / white space on right on ALL screen sizes */
html,
body {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
}
* { box-sizing: border-box; }

/* Extra safety — catch any element wider than viewport */
.ldh-homepage,
.ldh-homepage > *,
.site-content,
.content-area,
#primary,
.inside-article,
.entry-content {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/* Kill orange/colored backgrounds from Gutenberg blocks on temple pages */
.ldh-st .entry-content,
.ldh-st-article,
.ldh-st-article .wp-block-cover,
.ldh-st-article .wp-block-group,
.ldh-st-article [style*="background-color"],
.ldh-st-article [style*="background:"],
.ldh-st-article .has-background {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: #3A1000 !important;
}
.ldh-st-article .wp-block-cover__inner-container,
.ldh-st-article .wp-block-cover__background {
    display: none !important;
}

/* ══════════════════════════════════════════════════════════════
   PREMIUM HEADER — applied to EVERY page
══════════════════════════════════════════════════════════════ */
#masthead,
.site-header {
  background: linear-gradient(
    90deg,
    #0D0200 0%,
    #2A0800 18%,
    #3A1000 40%,
    #2A0800 62%,
    #3A1000 82%,
    #0D0200 100%
  ) !important;
  border-bottom: 2px solid rgba(255,107,0,.7) !important;
  box-shadow:
    0 4px 40px rgba(255,80,0,.2),
    0 1px 0 rgba(255,180,60,.15),
    inset 0 -1px 0 rgba(255,140,0,.1) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
}

/* Gold shimmer top-line on every page */
#masthead::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,
    transparent 0%, #FF6B00 20%, #FFD060 50%, #FF6B00 80%, transparent 100%);
  background-size: 200% 100%;
  animation: ldh-shimmer 5s linear infinite;
  pointer-events: none;
}
@keyframes ldh-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Kill GP's white nav background */
.inside-navigation,
.main-navigation .inside-navigation,
.nav-primary .inside-navigation,
.main-navigation,
.nav-primary,
.navigation-branding {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Header inner layout */
.inside-header {
  padding: 0 36px !important;
  min-height: 64px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  max-width: 100% !important;
}

/* ── Logo ── */
.site-title a,
.site-branding a,
.site-title a:visited {
  font-family: var(--ldh-font-head) !important;
  font-weight: 900 !important;
  font-size: 1.4rem !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #FF8C00 0%, #FFD060 50%, #FF6B00 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  filter: drop-shadow(0 0 10px rgba(255,140,0,.65)) !important;
  transition: filter .3s !important;
}
.site-title a:hover {
  filter: drop-shadow(0 0 22px rgba(255,200,60,.95)) !important;
}
@supports not (-webkit-background-clip: text) {
  .site-title a { color: #FF8C00 !important; }
}

.site-description {
  color: rgba(255,200,120,.55) !important;
  font-size: .7rem !important;
  letter-spacing: .06em !important;
  font-family: 'Poppins', sans-serif !important;
}

/* ── Nav links ── */
.main-navigation a,
.nav-menu a,
.nav-primary a {
  color: rgba(255,220,160,.88) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: .8rem !important;
  font-weight: 600 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 8px 16px !important;
  transition: color .2s, text-shadow .2s !important;
}
.main-navigation a:hover,
.nav-menu a:hover,
.nav-primary a:hover {
  color: #FFD060 !important;
  text-shadow: 0 0 14px rgba(255,210,60,.65) !important;
}
.main-navigation li.current-menu-item > a,
.nav-menu li.current-menu-item > a,
.main-navigation li.current_page_item > a {
  color: #FF6B00 !important;
  text-shadow: 0 0 18px rgba(255,107,0,.7) !important;
  border-bottom: 2px solid rgba(255,107,0,.8) !important;
}

/* ── Dropdowns ── */
.main-navigation .sub-menu,
.nav-menu .sub-menu {
  background: #1A0500 !important;
  border: 1px solid rgba(255,107,0,.25) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,.5) !important;
}
.main-navigation .sub-menu a,
.nav-menu .sub-menu a {
  color: rgba(255,210,150,.85) !important;
  border-bottom: 1px solid rgba(255,107,0,.08) !important;
}
.main-navigation .sub-menu a:hover,
.nav-menu .sub-menu a:hover {
  background: rgba(255,107,0,.12) !important;
  color: #FFD060 !important;
}

/* ── Mobile hamburger ── */
.menu-toggle {
  color: #FF8C00 !important;
  border-color: rgba(255,140,0,.35) !important;
  background: rgba(255,107,0,.08) !important;
}
.menu-toggle:hover {
  background: rgba(255,107,0,.2) !important;
}

/* ══════════════════════════════════════════════════════════════
   INNER PAGES — warm saffron design for blog, archive, single
══════════════════════════════════════════════════════════════ */

/* Body background */
body:not(.ldh-homepage) {
  background: #FFF9F2 !important;
  font-family: var(--ldh-font-body) !important;
}

/* Page title / entry header */
body:not(.ldh-homepage) .page-header,
body:not(.ldh-homepage) .entry-header {
  background: linear-gradient(135deg, #3D0800 0%, #1A0500 50%, #2A0D00 100%) !important;
  padding: 40px 48px !important;
  border-bottom: 2px solid rgba(255,107,0,.4) !important;
  margin-bottom: 0 !important;
  position: relative;
  overflow: hidden;
}
body:not(.ldh-homepage) .page-header::after,
body:not(.ldh-homepage) .entry-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,107,0,.12) 0%, transparent 60%);
  pointer-events: none;
}
body:not(.ldh-homepage) .page-title,
body:not(.ldh-homepage) .entry-title {
  font-family: var(--ldh-font-head) !important;
  color: #FFE8C0 !important;
  font-size: 1.9rem !important;
  font-weight: 900 !important;
  letter-spacing: .04em !important;
  line-height: 1.25 !important;
  text-shadow: 0 2px 20px rgba(255,107,0,.3) !important;
}
body:not(.ldh-homepage) .entry-meta,
body:not(.ldh-homepage) .posted-on,
body:not(.ldh-homepage) .byline {
  color: rgba(255,200,120,.55) !important;
  font-size: .78rem !important;
}
body:not(.ldh-homepage) .entry-meta a,
body:not(.ldh-homepage) .byline a {
  color: rgba(255,180,80,.7) !important;
}

/* ── Content area ── */
body:not(.ldh-homepage) .site-content,
body:not(.ldh-homepage) .content-area {
  background: #FFF9F2 !important;
}
body:not(.ldh-homepage) .entry-content {
  font-family: var(--ldh-font-body) !important;
  font-size: .95rem !important;
  line-height: 1.85 !important;
  color: #3D1A00 !important;
  max-width: 860px !important;
}
body:not(.ldh-homepage) .entry-content h2,
body:not(.ldh-homepage) .entry-content h3,
body:not(.ldh-homepage) .entry-content h4 {
  font-family: var(--ldh-font-head) !important;
  color: #2A0800 !important;
  margin-top: 2em !important;
  margin-bottom: .6em !important;
}
body:not(.ldh-homepage) .entry-content h2 {
  font-size: 1.35rem !important;
  border-left: 4px solid #FF6B00;
  padding-left: 14px;
}
body:not(.ldh-homepage) .entry-content h3 {
  font-size: 1.1rem !important;
  color: #3D1000 !important;
}
body:not(.ldh-homepage) .entry-content a {
  color: #FF6B00 !important;
  text-decoration: underline;
  text-decoration-color: rgba(255,107,0,.3);
}
body:not(.ldh-homepage) .entry-content a:hover {
  color: #CC4400 !important;
}
body:not(.ldh-homepage) .entry-content img {
  border-radius: 10px !important;
  box-shadow: 0 6px 28px rgba(0,0,0,.12) !important;
}
body:not(.ldh-homepage) .entry-content blockquote {
  border-left: 4px solid #D4AF37 !important;
  background: linear-gradient(135deg, #FFF8EE, #FFF3E0) !important;
  border-radius: 0 10px 10px 0 !important;
  padding: 16px 22px !important;
  margin: 24px 0 !important;
  font-style: italic !important;
  color: #7A5535 !important;
}

/* ── Archive / blog grid ── */
body:not(.ldh-homepage) .inside-article,
body:not(.ldh-homepage) article.post {
  background: #fff !important;
  border: 1px solid rgba(255,140,0,.14) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(180,80,0,.07) !important;
  margin-bottom: 28px !important;
  transition: transform .25s, box-shadow .25s !important;
}
body:not(.ldh-homepage) article.post:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 32px rgba(180,80,0,.12) !important;
}

/* ── Sidebar ── */
body:not(.ldh-homepage) .widget {
  background: #fff !important;
  border: 1px solid rgba(255,140,0,.14) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  margin-bottom: 20px !important;
  box-shadow: 0 3px 14px rgba(180,80,0,.06) !important;
}
body:not(.ldh-homepage) .widget-title {
  font-family: var(--ldh-font-head) !important;
  font-size: .85rem !important;
  color: #2A0800 !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  border-bottom: 2px solid rgba(255,107,0,.2) !important;
  padding-bottom: 10px !important;
  margin-bottom: 14px !important;
}

/* ── Pagination ── */
body:not(.ldh-homepage) .page-numbers,
body:not(.ldh-homepage) .nav-links a {
  background: #fff !important;
  border: 1px solid rgba(255,140,0,.2) !important;
  border-radius: 8px !important;
  color: #7A5535 !important;
  padding: 7px 14px !important;
  font-weight: 600 !important;
  transition: all .2s !important;
  text-decoration: none !important;
}
body:not(.ldh-homepage) .page-numbers.current,
body:not(.ldh-homepage) .page-numbers:hover {
  background: #FF6B00 !important;
  border-color: #FF6B00 !important;
  color: #fff !important;
}

/* ── Buttons sitewide ── */
body:not(.ldh-homepage) .wp-block-button__link,
body:not(.ldh-homepage) input[type="submit"],
body:not(.ldh-homepage) button[type="submit"] {
  background: linear-gradient(135deg, #FF6B00, #CC4400) !important;
  border: none !important;
  border-radius: 9px !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-family: var(--ldh-font-body) !important;
  padding: 12px 28px !important;
  cursor: pointer !important;
  box-shadow: 0 4px 16px rgba(255,107,0,.35) !important;
  transition: transform .2s, box-shadow .2s !important;
}
body:not(.ldh-homepage) input[type="submit"]:hover,
body:not(.ldh-homepage) button[type="submit"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 7px 22px rgba(255,107,0,.5) !important;
}

/* ── Footer ── */
.site-footer {
  background: linear-gradient(90deg, #0D0200, #1A0800, #0D0200) !important;
  border-top: 1px solid rgba(255,107,0,.25) !important;
  color: rgba(245,220,160,.45) !important;
  font-size: .78rem !important;
}
.site-footer a {
  color: rgba(255,160,60,.6) !important;
}
.site-footer a:hover {
  color: #FF8C00 !important;
}

/* ── Live Darshan page ── */
body:not(.ldh-homepage) .ldh-live-page-hero {
  background: linear-gradient(135deg, #3D0800 0%, #1A0500 60%, #0D0200 100%) !important;
}

/* ── Submit Temple form page ── */
body:not(.ldh-homepage) .ldh-submission-form input,
body:not(.ldh-homepage) .ldh-submission-form textarea,
body:not(.ldh-homepage) .ldh-submission-form select {
  border: 1px solid rgba(255,140,0,.25) !important;
  border-radius: 9px !important;
  background: #fff !important;
  font-family: var(--ldh-font-body) !important;
  transition: border-color .2s, box-shadow .2s !important;
}
body:not(.ldh-homepage) .ldh-submission-form input:focus,
body:not(.ldh-homepage) .ldh-submission-form textarea:focus,
body:not(.ldh-homepage) .ldh-submission-form select:focus {
  border-color: #FF6B00 !important;
  box-shadow: 0 0 0 3px rgba(255,107,0,.12) !important;
  outline: none !important;
}

/* ══════════════════════════════════════════════════════════════
   MOBILE — header on all pages
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .inside-header {
    padding: 0 12px 0 12px !important;
    min-height: 56px !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
  }
  .site-branding {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }
  .site-title a,
  .site-branding a {
    font-size: .9rem !important;
    letter-spacing: .05em !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
  }
  /* Lang toggle — compact on mobile */
  #masthead .ldh-lang-toggle,
  .site-header .ldh-lang-toggle {
    flex-shrink: 0 !important;
    margin-left: 0 !important;
    padding: 2px !important;
  }
  .ldh-lang-btn {
    padding: 4px 8px !important;
    font-size: .68rem !important;
  }
  /* Hamburger positioning */
  #ldh-hamburger {
    flex-shrink: 0 !important;
    margin-left: 4px !important;
  }
  /* Hide site title text on very small — keep logo image only */
  @media (max-width: 480px) {
    .site-title { display: none !important; }
    .site-branding { flex: 0 0 auto !important; }
    .custom-logo { max-height: 44px !important; width: auto !important; }
  }
  body:not(.ldh-homepage) .page-header,
  body:not(.ldh-homepage) .entry-header {
    padding: 28px 20px !important;
  }
  body:not(.ldh-homepage) .page-title,
  body:not(.ldh-homepage) .entry-title {
    font-size: 1.4rem !important;
  }
}
/* ═══════════════════════════════════════════════════
   HIDE LANG BAR — kill the white navigation bar
   GP creates .navigation-branding as a separate row
   We don't use it — hide it completely
═══════════════════════════════════════════════════ */
.navigation-branding,
.ldh-lang-nav-item,
.ldh-lang-bar,
.ldh-lang-strip {
    display: none !important;
}

/* Also hide WP admin bar on public pages */
#wpadminbar { display: none !important; }
html { margin-top: 0 !important; }

/* ═══════════════════════════════════════════════════
   LANG TOGGLE PILL — inside header only
═══════════════════════════════════════════════════ */
#masthead .ldh-lang-toggle,
.site-header .ldh-lang-toggle {
    display: inline-flex !important;
    align-items: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(212,175,55,.32);
    border-radius: 100px;
    padding: 3px;
    gap: 2px;
    margin-left: 8px;
    flex-shrink: 0;
    position: relative;
    z-index: 9999;
}
/* Hide any toggle injected outside the masthead */
.ldh-lang-toggle {
    display: none !important;
}
#masthead .ldh-lang-toggle,
.site-header .ldh-lang-toggle {
    display: inline-flex !important;
}
.ldh-lang-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: rgba(255,240,200,.55);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 100px;
    transition: all .2s;
    white-space: nowrap;
    flex-shrink: 0;
}
@media(max-width:480px){
    .ldh-lang-btn { padding: 4px 8px !important; font-size: .68rem !important; }
    #masthead .ldh-lang-toggle,
    .site-header .ldh-lang-toggle { margin-left: 4px !important; }
}

.ldh-lang-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: rgba(255,240,200,.5);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px 12px;
    border-radius: 100px;
    transition: all .2s;
    line-height: 1;
    white-space: nowrap;
}
.ldh-lang-btn.active {
    background: linear-gradient(135deg, #D4AF37, #FFD060);
    color: #2A0800;
    box-shadow: 0 2px 8px rgba(212,175,55,.4);
}
.ldh-lang-btn:hover:not(.active) {
    color: rgba(255,240,200,.95);
    background: rgba(255,200,100,.12);
}

/* Mobile nav — handled by ldh-hamburger injected via PHP */
@media(max-width:900px){
    .main-navigation,.nav-primary{display:none!important}
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM FOOTER — Complete Devotional Design
   Sacred geometry · Temple fire palette · Cinzel typography
═══════════════════════════════════════════════════════════════ */

/* Kill GP's default footer */
.site-footer:not(.ldh-footer),
.site-footer:not(.ldh-footer) * { display: none !important; }

/* ── Footer wrapper ── */
.ldh-footer {
    background:
        radial-gradient(ellipse at 10% 0%, rgba(255,107,0,.08) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 100%, rgba(212,175,55,.06) 0%, transparent 40%),
        linear-gradient(180deg, #0D0200 0%, #1A0600 40%, #0D0200 100%);
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', 'Poppins', sans-serif;
}

/* Background mandala pattern */
.ldh-footer::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(circle, rgba(255,200,100,.03) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* Large Om watermark */
.ldh-footer__bottom-om {
    position: absolute; right: -2%; bottom: -5%;
    font-size: 18rem; line-height: 1;
    color: rgba(212,175,55,.025);
    font-family: 'Noto Sans Devanagari', serif;
    pointer-events: none; user-select: none;
    z-index: 0;
}

/* ── Sacred top border ── */
.ldh-footer__topline {
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%, #D4AF37 15%, #FF6B00 35%, #FFD060 50%,
        #FF6B00 65%, #D4AF37 85%, transparent 100%);
    background-size: 200% 100%;
    animation: ldh-ftopline 6s linear infinite;
}
@keyframes ldh-ftopline {
    0%  { background-position: 200% center; }
    100%{ background-position: -200% center; }
}

/* ── Stats bar ── */
.ldh-footer__stats-bar {
    background: rgba(255,255,255,.03);
    border-bottom: 1px solid rgba(212,175,55,.1);
}
.ldh-footer__stats-inner {
    max-width: 1160px; margin: 0 auto;
    padding: 12px 28px;
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap;
}
.ldh-footer__stat {
    display: flex; align-items: center; gap: 6px;
    padding: 0 22px; text-align: center; flex-direction: column;
}
.ldh-footer__stat strong {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.2rem; font-weight: 700; color: #FFD060;
    line-height: 1; display: block;
}
.ldh-footer__stat span {
    font-size: .65rem; color: rgba(255,220,170,.4);
    text-transform: uppercase; letter-spacing: .12em; display: block;
}
.ldh-footer__stat-div {
    width: 1px; height: 28px;
    background: rgba(212,175,55,.15); flex-shrink: 0;
}
.ldh-footer__live-dot {
    display: block; width: 8px; height: 8px;
    background: #22c55e; border-radius: 50%;
    animation: ldh-fdot 1.6s ease-out infinite;
    margin: 0 auto 2px;
}
@keyframes ldh-fdot {
    0%  { box-shadow: 0 0 0 0 rgba(34,197,94,.7); }
    70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
    100%{ box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ── Main body ── */
.ldh-footer__body { padding: 24px 0 20px; position: relative; z-index: 1; }
.ldh-footer__inner {
    max-width: 1160px; margin: 0 auto; padding: 0 28px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 24px;
}

/* ── Column titles ── */
.ldh-footer__col-title {
    font-family: 'Cinzel', Georgia, serif;
    font-size: .82rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: #FFD060;
    margin: 0 0 20px;
    display: flex; align-items: center; gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212,175,55,.15);
    position: relative;
}
.ldh-footer__col-title::after {
    content: ''; position: absolute; bottom: -1px; left: 0;
    width: 40px; height: 2px;
    background: linear-gradient(90deg, #FF6B00, #D4AF37);
}
.ldh-footer__col-icon { font-size: 1rem; }

/* ── Brand column ── */
.ldh-footer__logo {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 18px;
}
.ldh-footer__om {
    font-family: 'Noto Sans Devanagari', serif;
    font-size: 2.2rem; line-height: 1;
    background: linear-gradient(135deg, #D4AF37, #FF6B00, #FFD060);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(212,175,55,.4));
    animation: ldh-fom 4s ease-in-out infinite alternate;
}
@keyframes ldh-fom {
    0%  { filter: drop-shadow(0 0 8px rgba(212,175,55,.3)); }
    100%{ filter: drop-shadow(0 0 18px rgba(255,107,0,.5)); }
}
.ldh-footer__sitename {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.1rem; font-weight: 900; letter-spacing: .1em;
    background: linear-gradient(135deg, #FF8C00, #FFD060, #FF6B00);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; display: block;
}
.ldh-footer__tagline {
    font-size: .68rem; color: rgba(255,220,170,.4);
    letter-spacing: .1em; text-transform: uppercase;
    display: block; margin-top: 2px;
}
.ldh-footer__about {
    font-size: .84rem; color: rgba(255,220,170,.5);
    line-height: 1.75; margin: 0 0 20px;
}

/* Mantra block */
.ldh-footer__mantra {
    background: rgba(255,200,80,.06);
    border: 1px solid rgba(212,175,55,.15);
    border-left: 3px solid rgba(212,175,55,.5);
    border-radius: 0 8px 8px 0;
    padding: 12px 16px; margin-bottom: 22px;
}
.ldh-footer__mantra-text {
    display: block;
    font-family: 'Noto Sans Devanagari', serif;
    font-size: 1rem; color: #FFD060; margin-bottom: 4px; font-weight: 600;
}
.ldh-footer__mantra-meaning {
    display: block; font-size: .72rem;
    color: rgba(255,220,170,.45); font-style: italic;
}

/* Social buttons */
.ldh-footer__social {
    display: flex; gap: 10px; flex-wrap: wrap;
}
.ldh-footer__social-btn {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(212,175,55,.15);
    color: rgba(255,220,170,.55) !important;
    transition: all .25s; text-decoration: none;
}
.ldh-footer__social-btn:hover {
    background: rgba(255,107,0,.2);
    border-color: rgba(255,107,0,.4);
    color: #FFD060 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255,107,0,.25);
}

/* ── Links list ── */
.ldh-footer__links {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 2px;
}
.ldh-footer__links--2col {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px 8px;
}
.ldh-footer__links li a {
    display: flex; align-items: center; gap: 8px;
    font-size: .84rem; color: rgba(255,220,170,.5) !important;
    text-decoration: none; padding: 6px 0;
    transition: color .2s, padding-left .2s;
    border-bottom: 1px solid rgba(255,200,100,.04);
}
.ldh-footer__links li a:hover {
    color: #FFD060 !important;
    padding-left: 6px;
}
.ldh-footer__link-icon {
    font-size: .75rem; color: rgba(212,175,55,.4); flex-shrink: 0; width: 14px;
    transition: color .2s;
}
a:hover .ldh-footer__link-icon { color: #FF6B00; }
.ldh-footer__link-count {
    margin-left: auto; font-size: .68rem;
    background: rgba(255,200,80,.1); color: rgba(255,200,80,.5);
    padding: 2px 7px; border-radius: 100px;
    border: 1px solid rgba(212,175,55,.1);
    flex-shrink: 0;
}

/* App hint */
.ldh-footer__app-hint {
    margin-top: 24px;
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,200,80,.05);
    border: 1px solid rgba(212,175,55,.12);
    border-radius: 10px; padding: 12px 14px;
}
.ldh-footer__app-hint__icon { font-size: 1.5rem; flex-shrink: 0; }
.ldh-footer__app-hint strong {
    display: block; font-size: .8rem; color: rgba(255,220,170,.7);
    font-weight: 600; margin-bottom: 2px;
}
.ldh-footer__app-hint span { font-size: .7rem; color: rgba(255,220,170,.38); }

/* ── Bottom bar ── */
.ldh-footer__bottom {
    border-top: 1px solid rgba(212,175,55,.1);
    position: relative; z-index: 1;
}
.ldh-footer__bottom-inner {
    max-width: 1160px; margin: 0 auto; padding: 14px 28px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
}
.ldh-footer__copy {
    font-size: .8rem; color: rgba(255,220,170,.38); display: flex; align-items: center; gap: 8px;
}
.ldh-footer__copy strong { color: rgba(255,200,100,.55); font-weight: 600; }
.ldh-footer__copy-om {
    font-family: 'Noto Sans Devanagari', serif;
    font-size: .9rem; color: rgba(212,175,55,.35);
}
.ldh-footer__bottom-links {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.ldh-footer__bottom-links a {
    font-size: .76rem; color: rgba(255,220,170,.35) !important;
    text-decoration: none; transition: color .2s;
}
.ldh-footer__bottom-links a:hover { color: #FFD060 !important; }
.ldh-footer__bottom-links span { color: rgba(255,200,100,.2); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ldh-footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
    .ldh-footer__col--brand { grid-column: span 2; }
}
@media (max-width: 680px) {
    .ldh-footer__inner { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
    .ldh-footer__col--brand { grid-column: auto; }
    .ldh-footer__stats-inner { gap: 0; }
    .ldh-footer__stat { padding: 8px 16px; }
    .ldh-footer__stat strong { font-size: 1.2rem; }
    .ldh-footer__stat-div { height: 30px; }
    .ldh-footer__body { padding: 24px 0 20px; }
    .ldh-footer__bottom-inner { flex-direction: column; align-items: center; text-align: center; }
    .ldh-footer__links--2col { grid-template-columns: 1fr; }
    .ldh-footer__bottom-om { font-size: 16rem; }
}