/* ═══════════════════════════════════════════════════════════
   MANTRA.TIPS  —  MASTER STYLESHEET  v2.0
   Sacred · Premium · Temple-Inspired
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Noto+Serif+Devanagari:wght@300;400;600&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* Backgrounds — richer, warmer, more depth */
  --ink:    #06040a;
  --deep:   #0c0712;
  --card:   #100b17;
  --card2:  #160f1e;
  --card3:  #1c1526;

  /* Borders */
  --border:     rgba(212,175,55,.16);
  --border-hi:  rgba(212,175,55,.35);
  --border-lo:  rgba(212,175,55,.07);

  /* Accent palette */
  --gold:   #d4af37;
  --gold2:  #e8c84a;   /* lighter gold for highlights */
  --glow:   rgba(212,175,55,.28);
  --saff:   #e07020;   /* warmer saffron */
  --saff2:  #f08030;   /* lighter saffron */
  --ruby:   #9b2335;   /* deep red accent */
  --teal:   #1a6b6b;   /* dark teal accent */

  /* Text */
  --cream:  #f5ede0;   /* warmer cream */
  --muted:  rgba(245,237,224,.52);
  --text:   rgba(245,237,224,.88);

  /* Layout */
  --maxw:   1200px;
  --hh:     64px;
  --r:      6px;       /* standard border-radius */

  /* Fonts */
  --fd:   'Cinzel Decorative', serif;
  --fb:   'Cormorant Garamond', Georgia, serif;
  --fdev: 'Noto Serif Devanagari', serif;

  /* Gradients */
  --grad-gold:    linear-gradient(135deg, var(--gold), var(--saff));
  --grad-subtle:  linear-gradient(135deg, rgba(212,175,55,.12), rgba(224,112,32,.06));
  --grad-hero:    radial-gradient(ellipse at 50% 0%, rgba(212,175,55,.12) 0%, rgba(224,112,32,.05) 40%, transparent 70%);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--fb);
  line-height: 1.78;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}

/* Warm vignette at top */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 280px;
  background: radial-gradient(ellipse at 50% 0%, rgba(224,112,32,.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--fd);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.25;
}
h1 { font-size: clamp(1.5rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.2rem, 2.8vw, 2rem); }
h3 { font-family: var(--fb); font-size: 1.1rem; font-weight: 600; color: var(--gold); }
p  { margin-bottom: 1.1rem; color: var(--text); }
a  { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
strong { color: var(--cream); font-weight: 600; }
em { color: var(--gold); font-style: italic; }
.dev  { font-family: var(--fdev); }
.gold { color: var(--gold); }
.saff { color: var(--saff); }
.muted { color: var(--muted); }

/* ── LAYOUT ── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 1.5rem; }
.si { max-width: var(--maxw); margin: 0 auto; }

/* Section labels */
.s-lbl {
  font-size: .62rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--saff);
  margin-bottom: .75rem;
  display: block;
  position: relative;
  padding-left: 1.4rem;
}
.s-lbl::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .5rem;
  top: .1rem;
}
.s-ttl { font-family: var(--fd); font-size: clamp(1.2rem, 3vw, 2rem); color: var(--cream); margin-bottom: .4rem; }
.s-dsc { color: var(--muted); font-size: .97rem; max-width: 520px; margin-bottom: 2.5rem; font-weight: 300; }

/* Divider */
.divider { display: flex; align-items: center; gap: 1.5rem; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}
.div-sym { color: var(--gold); opacity: .5; font-size: .9rem; }

/* ── PROGRESS BAR ── */
#progress-bar {
  position: fixed; top: 0; left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--ruby), var(--gold), var(--saff));
  z-index: 10000;
  width: 0;
  transition: width .1s;
  box-shadow: 0 0 8px rgba(212,175,55,.5);
}

/* ── LANG BANNER ── */
#lang-banner {
  display: none;
  background: rgba(212,175,55,.06);
  border-bottom: 1px solid var(--border);
  padding: .6rem 1.5rem;
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
}
#lang-banner a { color: var(--gold); margin-left: .5rem; }

/* ── HEADER ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--hh);
  padding: 0 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6,4,10,.93);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

/* Top hairline accent */
#site-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--saff), var(--gold), transparent);
  opacity: .6;
}

.logo {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .45rem;
  letter-spacing: .03em;
}
.logo span { color: var(--cream); opacity: .85; }
.logo-om {
  font-family: var(--fdev);
  font-size: 1.3rem;
  color: var(--saff);
  line-height: 1;
}

.site-nav { display: flex; gap: 2rem; align-items: center; }
.site-nav a {
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s;
  text-decoration: none;
  font-family: var(--fd);
  font-weight: 400;
}
.site-nav a:hover { color: var(--gold); text-decoration: none; }

.nav-cta {
  background: var(--grad-gold) !important;
  color: var(--ink) !important;
  padding: .38rem 1.1rem !important;
  border-radius: 2px;
  font-weight: 700 !important;
  font-size: .72rem !important;
  box-shadow: 0 2px 12px rgba(212,175,55,.3);
  transition: box-shadow .2s, transform .2s !important;
}
.nav-cta:hover { box-shadow: 0 4px 20px rgba(212,175,55,.5) !important; transform: translateY(-1px); text-decoration: none !important; }

.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--gold);
  width: 40px; height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 2px;
  align-items: center;
  justify-content: center;
  transition: border-color .2s;
}
.hamburger:hover { border-color: var(--gold); }

/* ── LANG SWITCHER ── */
.lang-sw { position: relative; }
.lang-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: .74rem;
  padding: .3rem .75rem;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  font-family: var(--fb);
  white-space: nowrap;
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-dd {
  position: absolute; top: 110%; right: 0;
  background: var(--card2);
  border: 1px solid var(--border-hi);
  border-radius: var(--r);
  min-width: 200px;
  max-height: 320px;
  overflow-y: auto;
  display: none;
  z-index: 200;
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
}
.lang-dd.open { display: block; }
.lang-dd a { display: block; padding: .55rem 1.1rem; font-size: .82rem; color: var(--muted); transition: background .2s, color .2s; text-decoration: none; }
.lang-dd a:hover, .lang-dd a.active { background: rgba(212,175,55,.07); color: var(--gold); }
.lang-dd-group { padding: .5rem 1.1rem .25rem; font-size: .59rem; letter-spacing: .22em; text-transform: uppercase; color: var(--saff); }
.lang-dd-sep { height: 1px; background: var(--border); margin: .3rem 0; }

/* ── MOBILE NAV ── */
#mobile-nav {
  display: none;
  position: fixed;
  top: var(--hh); left: 0; right: 0;
  background: rgba(6,4,10,.98);
  border-bottom: 1px solid var(--border);
  padding: 1.8rem;
  z-index: 899;
  flex-direction: column;
  gap: 1.1rem;
}
#mobile-nav a { color: var(--muted); font-size: .95rem; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; transition: color .2s; font-family: var(--fd); }
#mobile-nav a:hover { color: var(--gold); }
#mobile-nav.open { display: flex; }

/* ── FOOTER ── */
#site-footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 4.5rem 1.5rem 2.5rem;
  margin-top: 6rem;
  position: relative;
}
#site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--saff), var(--gold), transparent);
  opacity: .4;
}
.ft-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.ft-col h4 { font-family: var(--fd); font-size: .67rem; color: var(--gold); letter-spacing: .18em; margin-bottom: 1.2rem; padding-bottom: .6rem; border-bottom: 1px solid var(--border-lo); }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.ft-links a { color: var(--muted); text-decoration: none; font-size: .82rem; transition: color .2s; }
.ft-links a:hover { color: var(--gold); }
.ft-bottom {
  max-width: var(--maxw);
  margin: 2.5rem auto 0;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-lo);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .74rem;
  color: rgba(245,237,224,.25);
}
.ft-bottom a { color: inherit; transition: color .2s; }
.ft-bottom a:hover { color: var(--gold); text-decoration: none; }

/* ── SCROLL TOP ── */
#scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--card2);
  border: 1px solid var(--border);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: .9rem;
  border-radius: 2px;
  z-index: 800;
  opacity: 0;
  transition: opacity .3s, border-color .2s, box-shadow .2s;
  pointer-events: none;
}
#scroll-top:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(212,175,55,.2); text-decoration: none; }
#scroll-top.visible { opacity: 1; pointer-events: auto; }

/* ── BUTTONS ── */
.btn-p {
  display: inline-block;
  background: var(--grad-gold);
  color: var(--ink);
  padding: .88rem 2.2rem;
  font-family: var(--fd);
  font-size: .74rem;
  letter-spacing: .12em;
  font-weight: 700;
  border-radius: 2px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(212,175,55,.3);
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-p:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(212,175,55,.5); text-decoration: none; }
.btn-o {
  display: inline-block;
  border: 1px solid var(--border-hi);
  color: var(--cream);
  padding: .88rem 2.2rem;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color .2s, color .2s, box-shadow .2s;
  text-decoration: none;
  font-family: var(--fd);
}
.btn-o:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 4px 20px rgba(212,175,55,.12); text-decoration: none; }

/* ── AD ZONES ── */
.ad-zone { display: none; background: rgba(212,175,55,.02); border: 1px dashed rgba(212,175,55,.08); border-radius: 4px; align-items: center; justify-content: center; }
.ad-lb   { width: 100%; height: 90px; margin: 2rem 0; }
.ad-rect { width: 300px; height: 250px; }
.ad-in   { width: 100%; height: 250px; margin: 2rem 0; }

/* ── GRIDS ── */
.g4 { display: grid; grid-template-columns: repeat(4,1fr); }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); }
.gap1px { gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.gap1   { gap: 1rem; }

/* ── STATS ── */
.stats { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; background: var(--card); }
.stat  { padding: 2rem; text-align: center; border-right: 1px solid var(--border); position: relative; }
.stat:last-child { border-right: none; }
.stat-n { font-family: var(--fd); font-size: 1.9rem; color: var(--gold); display: block; }
.stat-l { font-size: .68rem; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; margin-top: .2rem; display: block; }

/* ── DEITY CARD ── */
.dc {
  background: var(--card);
  padding: 1.9rem 1.1rem;
  text-decoration: none;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: .65rem;
  transition: background .25s, transform .2s;
  position: relative; overflow: hidden;
}
.dc::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform .3s;
}
.dc:hover::before { transform: scaleX(1); }
.dc:hover { background: rgba(212,175,55,.04); transform: translateY(-2px); text-decoration: none; }
.dc-i { font-size: 2rem; position: relative; z-index: 1; }
.dc-n { font-family: var(--fd); font-size: .74rem; color: var(--gold); position: relative; z-index: 1; }
.dc-d { font-size: .73rem; color: var(--muted); font-style: italic; position: relative; z-index: 1; }
.dc-c { font-size: .61rem; color: var(--saff); letter-spacing: .15em; text-transform: uppercase; position: relative; z-index: 1; }

/* ── MANTRA CARD ── */
.mc {
  background: var(--card);
  padding: 1.8rem;
  text-decoration: none;
  display: flex; flex-direction: column; gap: .6rem;
  transition: background .25s, transform .2s;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border-lo);
}
.mc::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.mc:hover::after { transform: scaleX(1); }
.mc:hover { background: rgba(212,175,55,.04); transform: translateY(-1px); text-decoration: none; }
.mc-tag  { font-size: .59rem; letter-spacing: .22em; text-transform: uppercase; color: var(--saff); }
.mc-ttl  { font-family: var(--fd); font-size: .88rem; color: var(--cream); font-weight: 400; line-height: 1.35; }
.mc-skt  { font-family: var(--fdev); font-size: 1.05rem; color: var(--gold); line-height: 1.6; }
.mc-dsc  { font-size: .82rem; color: var(--muted); font-style: italic; flex: 1; }
.mc-lnk  { font-size: .66rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-top: auto; }
.mc-lnk::after { content: ' →'; transition: margin-left .2s; }
.mc:hover .mc-lnk::after { margin-left: 3px; }

/* ── INTENT CARD ── */
.ic {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.7rem 1rem;
  text-decoration: none;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  transition: border-color .25s, transform .2s, box-shadow .25s;
}
.ic:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(212,175,55,.1); text-decoration: none; }
.ic-i { font-size: 1.7rem; }
.ic-n { font-family: var(--fd); font-size: .7rem; color: var(--cream); }
.ic-d { font-size: .74rem; color: var(--muted); font-style: italic; }

/* ── BENEFITS 4-col ── */
.ben4 { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; background: var(--card); }
.ben4-i { padding: 2.2rem 1.5rem; border-right: 1px solid var(--border); text-align: center; transition: background .2s; }
.ben4-i:hover { background: rgba(212,175,55,.03); }
.ben4-i:last-child { border-right: none; }
.ben4-ic { font-size: 2rem; margin-bottom: .9rem; display: block; }
.ben4-t  { font-family: var(--fd); font-size: .76rem; color: var(--gold); margin-bottom: .5rem; }
.ben4-d  { font-size: .8rem; color: var(--muted); }

/* ── FAQ ── */
.faq { display: flex; flex-direction: column; gap: 3px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-item:hover { border-color: var(--border-hi); }
.faq-q {
  padding: 1.25rem 1.6rem;
  font-family: var(--fb);
  font-size: .98rem;
  font-weight: 500;
  color: var(--cream);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  list-style: none;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q::after { content: '+'; color: var(--gold); font-size: 1.3rem; flex-shrink: 0; transition: transform .28s; font-weight: 300; }
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 1.6rem 1.3rem; font-size: .9rem; color: var(--muted); line-height: 1.82; border-top: 1px solid var(--border-lo); padding-top: 1.1rem; }

/* ── NEWSLETTER ── */
.nl-wrap { max-width: 580px; margin: 0 auto; text-align: center; }
.nl-form { display: flex; margin-top: 1.8rem; border: 1px solid var(--border-hi); border-radius: 2px; overflow: hidden; }
.nl-in   { flex: 1; background: rgba(255,255,255,.04); border: none; padding: .95rem 1.4rem; color: var(--cream); font-family: var(--fb); font-size: .97rem; outline: none; }
.nl-in::placeholder { color: var(--muted); }
.nl-btn  { background: var(--grad-gold); color: var(--ink); border: none; padding: .95rem 1.6rem; font-family: var(--fd); font-size: .67rem; letter-spacing: .12em; cursor: pointer; font-weight: 700; transition: opacity .2s; }
.nl-btn:hover { opacity: .88; }
.nl-msg  { font-size: .76rem; margin-top: .75rem; min-height: 1.2em; text-align: center; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  padding: 7rem 1.5rem 5rem;
  overflow: hidden;
}

/* Mandala rings */
.hero-bg  { position: absolute; width: 980px; height: 980px; top: 50%; left: 50%; transform: translate(-50%,-50%); background: radial-gradient(ellipse at center, rgba(212,175,55,.1) 0%, rgba(224,112,32,.05) 35%, transparent 68%); border-radius: 50%; animation: pulse 9s ease-in-out infinite; pointer-events: none; }
.hero-r1  { position: absolute; width: 640px; height: 640px; top: 50%; left: 50%; transform: translate(-50%,-50%); border: 1px solid rgba(212,175,55,.09); border-radius: 50%; animation: spin 80s linear infinite; pointer-events: none; }
.hero-r2  { position: absolute; width: 460px; height: 460px; top: 50%; left: 50%; transform: translate(-50%,-50%); border: 1px solid rgba(224,112,32,.06); border-radius: 50%; animation: spin 55s linear infinite reverse; pointer-events: none; }
.hero-r3  { position: absolute; width: 320px; height: 320px; top: 50%; left: 50%; transform: translate(-50%,-50%); border: 1px solid rgba(212,175,55,.05); border-radius: 50%; animation: spin 35s linear infinite; pointer-events: none; }

.hero-om  {
  font-family: var(--fdev);
  font-size: clamp(5rem, 14vw, 10rem);
  color: var(--gold);
  line-height: 1;
  animation: fadeUp 1.2s ease both, shimmer 5s ease-in-out 1.2s infinite;
  position: relative; z-index: 2;
  text-shadow: 0 0 80px rgba(212,175,55,.35);
}
.hero-tag { font-size: .65rem; letter-spacing: .42em; text-transform: uppercase; color: var(--saff); margin: 1rem 0 .5rem; animation: fadeUp 1.2s ease .2s both; position: relative; z-index: 2; }
.hero h1  { animation: fadeUp 1.2s ease .4s both; position: relative; z-index: 2; max-width: 820px; margin: 0 auto 1.2rem; }
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero-sub { font-size: 1.08rem; color: var(--muted); max-width: 560px; margin: 0 auto 2.5rem; font-weight: 300; animation: fadeUp 1.2s ease .6s both; position: relative; z-index: 2; }
.hero-btns { display: flex; gap: 1.1rem; flex-wrap: wrap; justify-content: center; animation: fadeUp 1.2s ease .8s both; position: relative; z-index: 2; }

/* Mantra of the day on hero */
.motd-box {
  margin-top: 3.5rem;
  padding: 1.6rem 2.4rem;
  border: 1px solid var(--border-hi);
  border-radius: var(--r);
  background: rgba(212,175,55,.04);
  text-align: center;
  position: relative; z-index: 2;
  animation: fadeUp 1.2s ease 1s both;
  max-width: 480px;
  backdrop-filter: blur(8px);
}
.motd-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-subtle);
  border-radius: var(--r);
  pointer-events: none;
}
.motd-lbl { font-size: .59rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); margin-bottom: .7rem; }
.motd-skt { font-family: var(--fdev); font-size: 1.5rem; color: var(--gold); line-height: 1.5; position: relative; z-index: 1; }
.motd-rom { font-size: .88rem; color: var(--cream); margin: .35rem 0; position: relative; z-index: 1; font-style: italic; }
.motd-mea { font-size: .78rem; color: var(--muted); font-style: italic; position: relative; z-index: 1; }

/* ── MANTRA PAGE ── */
.breadcrumb {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 5.5rem 1.5rem .5rem;
  font-size: .76rem;
  color: var(--muted);
  display: flex; gap: .5rem; flex-wrap: wrap;
  align-items: center;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(212,175,55,.3); font-size: .65rem; }

/* Page hero */
.page-hero {
  max-width: 880px;
  margin: 0 auto;
  padding: 1rem 1.5rem 2.8rem;
}
.hero-meta {
  display: flex; gap: 1.4rem; flex-wrap: wrap;
  font-size: .76rem; color: var(--muted);
  margin-bottom: 2rem;
}
.hero-meta span { display: flex; align-items: center; gap: .3rem; }

/* Layout: main + sidebar */
.page-layout {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3.5rem;
  align-items: start;
}
main { min-width: 0; }
.sidebar { position: sticky; top: calc(var(--hh) + 18px); }

/* Sidebar cards */
.sb-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
  margin-bottom: 1.4rem;
  transition: border-color .2s;
}
.sb-card:hover { border-color: var(--border-hi); }
.sb-ttl {
  font-family: var(--fd);
  font-size: .66rem;
  color: var(--gold);
  letter-spacing: .18em;
  margin-bottom: 1.1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border-lo);
  text-transform: uppercase;
}
.toc { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.toc a { color: var(--muted); text-decoration: none; font-size: .81rem; transition: color .2s; display: flex; align-items: center; gap: .4rem; }
.toc a::before { content: '›'; color: var(--gold); opacity: .45; flex-shrink: 0; }
.toc a:hover { color: var(--gold); }
.qf-row { display: flex; justify-content: space-between; align-items: flex-start; font-size: .81rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border-lo); gap: .5rem; }
.qf-row:last-child { border-bottom: none; padding-bottom: 0; }
.qf-lbl { color: var(--muted); flex-shrink: 0; }
.qf-val { color: var(--cream); text-align: right; font-size: .78rem; }

/* ── MANTRA BOX (hero verse) ── */
.mb {
  background: var(--card2);
  border: 1px solid var(--border-hi);
  border-radius: var(--r);
  padding: 2.8rem 2.2rem;
  text-align: center;
  position: relative; overflow: hidden;
  margin-bottom: 1.5rem;
}
.mb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,.09), transparent 65%);
  pointer-events: none;
}
/* top & bottom border accent */
.mb::after {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: .6;
}
.mb-lbl  { font-size: .59rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; display: block; position: relative; z-index: 1; }
.mb-skt  { font-family: var(--fdev); font-size: clamp(1.3rem, 3vw, 2.1rem); color: var(--gold); line-height: 1.75; margin-bottom: 1.1rem; position: relative; z-index: 1; text-shadow: 0 0 40px rgba(212,175,55,.2); }
.mb-rom  { font-size: 1rem; color: var(--cream); font-style: italic; margin-bottom: .65rem; position: relative; z-index: 1; letter-spacing: .03em; }
.mb-mea  { font-size: .88rem; color: var(--muted); position: relative; z-index: 1; }
.mb-hr   { width: 80px; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); margin: 1.2rem auto; position: relative; z-index: 1; }

/* ── AUDIO PLAYER ── */
.audio-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.6rem;
  margin: 2.2rem 0;
  transition: border-color .2s;
}
.audio-wrap:hover { border-color: var(--border-hi); }
.audio-lbl {
  font-size: .61rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
  display: flex; align-items: center; gap: .6rem;
}
.audio-lbl::before { content: '▶'; font-size: .7rem; color: var(--saff); }
.yt-wrap {
  width: 100%; aspect-ratio: 16/9;
  background: var(--card2);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .85rem;
  overflow: hidden;
  border: 1px solid var(--border-lo);
}
.yt-wrap iframe { width: 100%; height: 100%; border: none; border-radius: 4px; }

/* ── BENEFITS 3-col ── */
.ben3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin: 1.5rem 0; }
.ben3-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
  transition: border-color .25s, transform .2s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.ben3-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity .3s;
}
.ben3-card:hover { border-color: var(--border-hi); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,175,55,.08); }
.ben3-card:hover::before { opacity: 1; }
.ben3-n { font-family: var(--fd); font-size: 1.4rem; color: rgba(212,175,55,.18); line-height: 1; margin-bottom: .4rem; }
.ben3-t { font-size: .86rem; font-weight: 600; color: var(--cream); margin-bottom: .3rem; }
.ben3-d { font-size: .8rem; color: var(--muted); line-height: 1.65; }

/* ── STEPS ── */
.steps { counter-reset: step; display: flex; flex-direction: column; gap: .8rem; margin: 1.5rem 0; }
.step {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.2rem 1.4rem;
  transition: border-color .2s;
}
.step:hover { border-color: var(--border-hi); }
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--fd);
  font-size: .95rem;
  color: var(--gold);
  min-width: 1.6rem;
  flex-shrink: 0;
  margin-top: .12rem;
  opacity: .8;
}
.step h4 { font-family: var(--fb); font-size: .93rem; font-weight: 600; color: var(--cream); margin-bottom: .25rem; }
.step p  { font-size: .84rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* ── RELATED MANTRAS ── */
.rel-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin: 1.5rem 0; }
.rel-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.3rem;
  text-decoration: none;
  transition: border-color .25s, transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.rel-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.rel-card:hover { border-color: var(--border-hi); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,.09); text-decoration: none; }
.rel-card:hover::after { transform: scaleX(1); }
.rel-tag  { font-size: .59rem; letter-spacing: .2em; text-transform: uppercase; color: var(--saff); margin-bottom: .4rem; display: block; }
.rel-name { font-family: var(--fd); font-size: .79rem; color: var(--cream); margin-bottom: .3rem; }
.rel-skt  { font-family: var(--fdev); font-size: .95rem; color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes pulse   { 0%,100%{ transform:translate(-50%,-50%) scale(1);    opacity:1 }   50%{ transform:translate(-50%,-50%) scale(1.07); opacity:.75 } }
@keyframes spin    { from{ transform:translate(-50%,-50%) rotate(0) }      to{ transform:translate(-50%,-50%) rotate(360deg) } }
@keyframes fadeUp  { from{ opacity:0; transform:translateY(30px) }          to{ opacity:1; transform:translateY(0) } }
@keyframes shimmer { 0%,100%{ opacity:.8; text-shadow:0 0 60px var(--glow) } 50%{ opacity:1; text-shadow:0 0 120px var(--glow),0 0 220px rgba(212,175,55,.18) } }
@keyframes glow    { 0%,100%{ box-shadow:0 0 20px rgba(212,175,55,.15) }   50%{ box-shadow:0 0 40px rgba(212,175,55,.3) } }

/* ── RESPONSIVE ── */
@media(max-width:1060px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .ben3 { grid-template-columns: 1fr 1fr; }
  .rel-grid { grid-template-columns: 1fr 1fr; }
  .ben4 { grid-template-columns: 1fr 1fr; }
  .ben4-i:nth-child(2) { border-right: none; }
  .ben4-i:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .ben4-i:nth-child(4) { border-top: 1px solid var(--border); }
}

@media(max-width:720px) {
  html { font-size: 16px; }
  section { padding: 3.5rem 1rem; }
  .g4 { grid-template-columns: 1fr 1fr; }
  .g3 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid var(--border); }
  .ben3 { grid-template-columns: 1fr; }
  .rel-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .nl-form { flex-direction: column; }
  .nl-btn { padding: .9rem; }
  .page-layout { padding: 0 1rem; }
  .mb { padding: 1.8rem 1.2rem; }
  .hero-r1 { width: 380px; height: 380px; }
  .hero-r2 { width: 270px; height: 270px; }
  .hero-r3 { display: none; }
}

@media(max-width:480px) {
  .hero h1 { font-size: 1.4rem; }
  .motd-box { padding: 1.2rem 1.3rem; }
  .hero-om { font-size: 5rem; }
  .hero-r1 { display: none; }
  .ben3 { grid-template-columns: 1fr; }
  .rel-grid { grid-template-columns: 1fr; }
}

@media print {
  #site-header, #scroll-top, .ad-zone, #site-footer, .hamburger, #mobile-nav { display: none; }
  body { background: white; color: black; }
}
