
:root {
  --indigo-950: #18123f;
  --indigo-900: #21185f;
  --indigo-700: #2f2583;
  --saffron-600: #f15900;
  --saffron-500: #ff7a1a;
  --gold-400: #d8a734;
  --stone-50: #fbfaf6;
  --stone-100: #f4efe4;
  --stone-200: #e4d8c5;
  --stone-700: #62574c;
  --ink: #241f1a;
  --muted: #756b62;
  --white: #ffffff;
  --border: rgba(47, 37, 131, 0.15);
  --shadow: 0 18px 45px rgba(33, 24, 95, 0.13);
  --radius: 8px;
  --header-h: 82px;
  font-family: "Segoe UI", Aptos, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--stone-50);
  color: var(--ink);
  font-family: "Segoe UI", Aptos, Arial, sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--indigo-900);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius);
}
.skip-link:focus { top: 12px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.top-rail {
  min-height: var(--header-h);
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 232px;
  background: var(--indigo-950);
  padding: 4px 10px 4px 4px;
  border-radius: var(--radius);
}
.brand img { width: 232px; height: auto; }
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex: 1;
}
.desktop-nav a,
.mobile-nav a {
  text-decoration: none;
  color: var(--indigo-950);
  font-weight: 650;
  font-size: 0.93rem;
  padding: 10px 12px;
  border-radius: var(--radius);
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  background: rgba(241, 89, 0, 0.1);
  color: var(--saffron-600);
}
.menu-button {
  display: none;
  border: 1px solid var(--border);
  background: white;
  color: var(--indigo-900);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
}
.mobile-nav {
  display: none;
  padding: 8px 20px 18px;
  border-top: 1px solid var(--border);
}
.mobile-nav.is-open { display: grid; gap: 4px; }
.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 750;
  font-size: 0.95rem;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: var(--saffron-600);
  color: white;
  box-shadow: 0 12px 24px rgba(241, 89, 0, 0.22);
}
.button-secondary {
  background: var(--indigo-900);
  color: white;
}
.button-ghost {
  background: white;
  color: var(--indigo-900);
  border-color: var(--border);
}
.button-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: white;
}
.align-center { margin: 24px auto 0; }
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(251,250,246,1) 0%, rgba(251,250,246,0.96) 46%, rgba(244,239,228,0.72) 100%);
}
.hero-bg-line {
  position: absolute;
  inset: auto 0 0 0;
  height: 84px;
  background:
    linear-gradient(90deg, transparent, rgba(241, 89, 0, 0.16), transparent),
    repeating-linear-gradient(90deg, rgba(47,37,131,.14) 0 1px, transparent 1px 34px);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 64px 0 76px;
}
.hero-copy h1 {
  margin: 0;
  max-width: 700px;
  color: var(--indigo-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 6vw, 5.4rem);
  line-height: 0.98;
  font-weight: 700;
}
.hero-copy p {
  margin: 26px 0 0;
  max-width: 650px;
  color: var(--stone-700);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-links a {
  color: var(--indigo-700);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.hero-media {
  position: relative;
  min-height: 560px;
}
.hero-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-inset {
  position: absolute;
  right: -18px;
  bottom: 40px;
  width: min(44%, 250px);
  border: 8px solid var(--stone-50);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-inset img { aspect-ratio: 4 / 5; object-fit: cover; }
.hero-audio-card {
  position: absolute;
  left: -34px;
  bottom: 18px;
  width: min(360px, 74%);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.hero-audio-card span,
.event-card span,
.related-card span,
.page-context span {
  color: var(--saffron-600);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}
.hero-audio-card strong { display: block; color: var(--indigo-950); margin-bottom: 8px; }
audio { width: 100%; height: 36px; }
.section-heading,
.feature-intro {
  max-width: 720px;
  margin-bottom: 34px;
}
.section-heading h2,
.feature-intro h2,
.media-section h2,
.updates-section h2,
.gallery-section h2,
.donation-band h2,
.page-hero h1,
.content-article h2,
.related-section h2 {
  margin: 0;
  color: var(--indigo-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.7vw, 3.25rem);
  line-height: 1.08;
}
.section-heading p,
.feature-intro p,
.gallery-section p,
.donation-band p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}
.quick-access,
.feature-section,
.updates-section {
  padding: 90px 0;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.resource-row {
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  gap: 16px;
  align-items: center;
  padding: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--indigo-950);
  text-decoration: none;
  min-height: 112px;
}
.resource-row > .icon:first-child,
.feature-card > .icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--saffron-600);
  background: rgba(241, 89, 0, 0.09);
  border-radius: var(--radius);
}
.resource-row strong,
.feature-card strong { display: block; font-size: 1.06rem; line-height: 1.2; }
.resource-row small,
.feature-card span,
.event-card small,
.related-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.45;
}
.search-band {
  background: var(--indigo-950);
  color: white;
  padding: 74px 0;
}
.search-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 46px;
  align-items: start;
}
.search-shell h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}
.search-shell p { color: rgba(255,255,255,0.74); font-size: 1.05rem; }
.search-panel {
  background: white;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 16px;
}
.search-input {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.search-input input {
  border: 0;
  outline: 0;
  width: 100%;
  font: inherit;
  color: var(--indigo-950);
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}
.filter-row button {
  border: 1px solid var(--border);
  background: var(--stone-50);
  color: var(--indigo-900);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-weight: 750;
  cursor: pointer;
}
.filter-row button.is-active {
  background: var(--saffron-600);
  border-color: var(--saffron-600);
  color: white;
}
.search-results {
  max-height: 360px;
  overflow: auto;
  display: grid;
  gap: 8px;
}
.search-result {
  display: block;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  background: white;
}
.search-result strong { display: block; color: var(--indigo-950); line-height: 1.3; }
.search-result span { color: var(--saffron-600); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; }
.search-result small { color: var(--muted); display: block; margin-top: 3px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  display: block;
  min-height: 248px;
  padding: 24px;
  color: var(--indigo-950);
  background: linear-gradient(180deg, #fff, #f8f3ea);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
}
.feature-card strong { margin-top: 24px; font-size: 1.3rem; }
.media-section {
  background: white;
  padding: 90px 0;
  border-block: 1px solid var(--border);
}
.media-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 28px;
}
.devotion-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  background: var(--stone-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.devotion-card img {
  max-height: 280px;
  object-fit: contain;
  margin: 0 auto;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--saffron-600);
  font-weight: 800;
  text-decoration: none;
}
.audio-panel {
  background: var(--indigo-950);
  color: white;
  border-radius: var(--radius);
  padding: 24px;
}
.audio-panel h2 { color: white; font-size: 2rem; }
.track-list { display: grid; gap: 9px; margin: 18px 0; }
.track-button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: white;
  border-radius: var(--radius);
  padding: 11px;
  text-align: left;
  font-weight: 750;
  cursor: pointer;
}
.events-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.event-card,
.related-card {
  display: block;
  padding: 20px;
  min-height: 210px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--indigo-950);
  text-decoration: none;
}
.event-card strong,
.related-card strong {
  display: block;
  margin-top: 14px;
  font-size: 1.08rem;
  line-height: 1.3;
}
.gallery-section {
  padding: 90px 0;
  background: var(--stone-100);
}
.gallery-layout {
  display: grid;
  grid-template-columns: 0.64fr 1.36fr;
  gap: 44px;
  align-items: center;
}
.gallery-grid,
.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-thumb,
.asset-thumb {
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-thumb img,
.asset-thumb img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  height: auto;
  object-fit: cover;
}
.donation-band {
  background: linear-gradient(135deg, var(--indigo-950), var(--indigo-700));
  color: white;
  padding: 72px 0;
}
.donation-band h2 { color: white; }
.donation-band p { color: rgba(255,255,255,.76); }
.donation-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.donation-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.site-footer {
  background: #100d2b;
  color: white;
  padding: 58px 0 24px;
}
.footer-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
}
.footer-logo { width: 230px; background: transparent; border-radius: var(--radius); padding: 0; }
.footer-grid p { color: rgba(255,255,255,.72); max-width: 430px; }
.footer-grid h2 {
  color: white;
  font-size: 0.93rem;
  margin: 0 0 12px;
}
.footer-grid a {
  display: block;
  color: rgba(255,255,255,.76);
  text-decoration: none;
  margin: 7px 0;
}
.footer-grid a:hover { color: white; }
.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.62);
  font-size: 0.92rem;
}
.page-hero {
  background:
    linear-gradient(120deg, rgba(24,18,63,0.95), rgba(47,37,131,0.92)),
    url("assets/archive/sass-3-640cd8d5c6.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 72px 0;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 34px;
  align-items: end;
}
.breadcrumb { margin: 0 0 18px; color: rgba(255,255,255,.74); }
.breadcrumb a { color: white; }
.page-hero h1 {
  color: white;
  max-width: 900px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}
.page-hero p {
  max-width: 780px;
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
}
.page-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.page-context {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 20px;
}
.page-context strong {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
}
.page-context small { color: rgba(255,255,255,.72); }
.content-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 42px;
  padding: 62px 0 82px;
}
.content-side {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  align-self: start;
  display: grid;
  gap: 18px;
}
.page-toc,
.side-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.page-toc a,
.side-card a {
  display: block;
  color: var(--indigo-900);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(47,37,131,.08);
  font-weight: 700;
}
.page-toc a:last-child,
.side-card a:last-child { border-bottom: 0; }
.side-card h2 {
  margin: 0 0 8px;
  color: var(--indigo-950);
  font-size: 1rem;
}
.content-article {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 54px);
  box-shadow: 0 10px 28px rgba(33, 24, 95, 0.06);
  overflow-wrap: anywhere;
}
.content-article h2,
.content-article h3,
.content-article h4 {
  color: var(--indigo-950);
  line-height: 1.18;
}
.content-article h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); margin-top: 1.4em; }
.content-article h3 { font-size: 1.35rem; margin-top: 1.3em; }
.content-article p,
.content-article li {
  color: #3b332c;
  font-size: 1.02rem;
}
.content-article a { color: var(--indigo-700); font-weight: 700; }
.content-article blockquote {
  border-left: 4px solid var(--saffron-600);
  margin: 24px 0;
  padding: 12px 18px;
  background: var(--stone-50);
  color: var(--indigo-950);
}
.content-article img {
  border-radius: var(--radius);
  margin: 18px 0;
}
.table-wrap { overflow-x: auto; margin: 24px 0; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
th, td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
th {
  background: var(--stone-100);
  color: var(--indigo-950);
}
.content-assets {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.content-assets h2 {
  margin-top: 0;
}
.media-list,
.download-list,
.embed-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.media-row,
.download-row,
.embed-list a {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(220px, 2fr);
  gap: 12px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  text-decoration: none;
}
.download-row {
  grid-template-columns: 24px 1fr;
  color: var(--indigo-900);
  font-weight: 700;
}
.embed-list a {
  display: block;
  color: var(--indigo-700);
}
.related-section { padding: 0 0 80px; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(12, 8, 32, .84);
  padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-height: 86vh;
  max-width: 92vw;
  border-radius: var(--radius);
  background: white;
}
.lightbox button {
  position: fixed;
  top: 18px;
  right: 18px;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.1);
  color: white;
  border-radius: var(--radius);
  min-width: 44px;
  min-height: 44px;
  font-size: 1.4rem;
  cursor: pointer;
}
@media (max-width: 1060px) {
  .desktop-nav { display: none; }
  .menu-button { display: inline-flex; margin-left: auto; }
  .brand { min-width: 210px; }
  .brand img { width: 210px; }
  .hero-grid,
  .search-shell,
  .media-grid,
  .gallery-layout,
  .content-layout {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-media { min-height: 460px; }
  .hero-main-img { height: 420px; }
  .quick-grid,
  .feature-grid,
  .events-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-side { position: static; order: 2; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  :root { --header-h: 72px; }
  .container { width: min(100% - 28px, 1180px); }
  .top-rail { min-height: var(--header-h); width: min(100% - 24px, 1240px); }
  .brand { min-width: 180px; }
  .brand img { width: 180px; }
  .hero-grid { padding: 40px 0 62px; }
  .hero-copy h1 { font-size: clamp(2.35rem, 13vw, 3.4rem); }
  .hero-actions,
  .donation-actions,
  .donation-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .button { width: 100%; }
  .hero-media { min-height: auto; }
  .hero-main-img { height: 330px; }
  .hero-inset { position: relative; right: auto; bottom: auto; width: 58%; margin: -54px 14px 0 auto; }
  .hero-audio-card { position: relative; left: auto; bottom: auto; width: 100%; margin-top: 14px; }
  .quick-access, .feature-section, .updates-section, .media-section, .gallery-section { padding: 58px 0; }
  .quick-grid,
  .feature-grid,
  .events-grid,
  .related-grid,
  .gallery-grid,
  .asset-grid {
    grid-template-columns: 1fr;
  }
  .resource-row { grid-template-columns: 42px 1fr; }
  .resource-row > .icon:last-child { display: none; }
  .devotion-card { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 0; }
  .content-layout { padding: 38px 0 56px; }
  .media-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Devotional redesign layer */
:root {
  --temple-night: #080626;
  --temple-indigo: #171052;
  --temple-indigo-soft: #251a72;
  --lamp: #ffbf4a;
  --copper: #b96a2c;
  --kumkum: #f05a00;
  --sandal: #f4dfb9;
  --sandal-light: #fff7e8;
  --sacred-border: rgba(255, 191, 74, 0.34);
}
body {
  background:
    linear-gradient(180deg, rgba(8,6,38,.98) 0, rgba(8,6,38,.98) 84px, rgba(255,247,232,.96) 420px),
    url("assets/generated/parchment-temple-texture.png") top center / 1400px auto fixed;
}
.site-header {
  background: rgba(8, 6, 38, 0.96);
  color: white;
  border-bottom: 1px solid rgba(255, 191, 74, 0.32);
  box-shadow: 0 12px 32px rgba(8, 6, 38, 0.28);
}
.sacred-rail {
  min-height: 34px;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 247, 232, 0.82);
  font-size: 0.86rem;
  font-weight: 720;
  border-bottom: 1px solid rgba(255, 191, 74, 0.18);
}
.sacred-rail span,
.sacred-rail a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  text-decoration: none;
}
.sacred-rail .icon {
  width: 16px;
  height: 16px;
  color: var(--lamp);
}
.top-rail {
  min-height: 74px;
}
.brand {
  background: rgba(255, 247, 232, 0.07);
  border: 1px solid rgba(255, 191, 74, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.desktop-nav a,
.mobile-nav a {
  color: rgba(255, 247, 232, 0.9);
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  background: rgba(255, 191, 74, 0.13);
  color: var(--lamp);
}
.menu-button {
  background: rgba(255,247,232,.08);
  border-color: rgba(255,191,74,.28);
  color: white;
}
.mobile-nav {
  background: rgba(8,6,38,.98);
  border-top-color: rgba(255,191,74,.2);
}
.devotional-hero {
  position: relative;
  display: block;
  min-height: calc(100vh - 108px);
  color: white;
  background: var(--temple-night);
  padding-bottom: 94px;
}
.hero-backdrop,
.hero-scrim {
  position: absolute;
  inset: 0;
}
.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.98;
}
.hero-scrim {
  background:
    radial-gradient(circle at 78% 26%, rgba(255, 191, 74, 0.1), transparent 26%),
    linear-gradient(90deg, rgba(8,6,38,.96) 0%, rgba(8,6,38,.88) 35%, rgba(8,6,38,.38) 68%, rgba(8,6,38,.18) 100%),
    linear-gradient(180deg, rgba(8,6,38,.18), rgba(8,6,38,.72));
}
.devotional-hero .hero-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .55fr);
  padding: clamp(70px, 8vw, 112px) 0 54px;
}
.devotional-hero .hero-copy h1 {
  color: var(--sandal-light);
  text-shadow: 0 7px 26px rgba(0,0,0,.36);
  max-width: 760px;
}
.devotional-hero .hero-copy h1::after {
  content: "";
  display: block;
  width: min(360px, 72%);
  height: 2px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--lamp), transparent);
}
.devotional-hero .hero-copy p {
  color: rgba(255, 247, 232, 0.82);
  text-shadow: 0 2px 8px rgba(0,0,0,.22);
}
.devotional-hero .hero-links a {
  color: var(--lamp);
}
.button-primary {
  background: linear-gradient(180deg, #ff8a22, #ed5200);
  box-shadow: 0 18px 30px rgba(240, 90, 0, 0.3);
}
.button-secondary {
  background: rgba(255,247,232,.1);
  border-color: rgba(255,191,74,.42);
  color: var(--sandal-light);
}
.button-ghost {
  background: rgba(255, 247, 232, 0.82);
  color: var(--temple-indigo);
  border-color: rgba(185, 106, 44, 0.28);
}
.hero-devotion-panel {
  align-self: center;
  background: rgba(8, 6, 38, 0.72);
  border: 1px solid var(--sacred-border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,.34);
  backdrop-filter: blur(12px);
}
.hero-deity {
  width: min(210px, 72%);
  max-height: 260px;
  object-fit: contain;
  margin: 0 auto 14px;
  filter: drop-shadow(0 16px 26px rgba(255, 191, 74, .22));
}
.hero-panel-copy span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lamp);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}
.hero-panel-copy strong {
  display: block;
  margin: 6px 0 10px;
  color: var(--sandal-light);
}
.hero-devotion-panel a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--lamp);
  text-decoration: none;
  font-weight: 820;
}
.quick-dock {
  position: relative;
  z-index: 3;
  margin-top: -36px;
  background:
    linear-gradient(180deg, rgba(255,247,232,.97), rgba(244,223,185,.96)),
    url("assets/generated/parchment-temple-texture.png") center / cover;
  border: 1px solid rgba(185,106,44,.28);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(8,6,38,.26);
  padding: 18px;
}
.quick-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 6px 16px;
  border-bottom: 1px solid rgba(185,106,44,.18);
  margin-bottom: 12px;
}
.quick-title-row h2 {
  margin: 0;
  color: var(--temple-indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
}
.quick-title-row p {
  margin: 0;
  color: #6d4d33;
}
.resource-row {
  background: rgba(255, 252, 243, 0.78);
  border-color: rgba(185, 106, 44, 0.2);
  box-shadow: none;
}
.resource-row:hover,
.feature-card:hover,
.event-card:hover,
.related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(72, 39, 9, 0.12);
}
.resource-row > .icon:first-child,
.feature-card > .icon {
  color: var(--kumkum);
  background: rgba(240, 90, 0, 0.11);
}
.search-band {
  background:
    linear-gradient(135deg, rgba(23,16,82,.97), rgba(8,6,38,.98)),
    url("assets/generated/parchment-temple-texture.png") center / cover;
  border-block: 1px solid rgba(255,191,74,.22);
}
.search-panel {
  background: rgba(255, 247, 232, 0.97);
  border: 1px solid rgba(255, 191, 74, 0.3);
}
.feature-section,
.updates-section {
  background: rgba(255, 247, 232, 0.72);
}
.feature-card,
.event-card,
.related-card,
.content-article,
.page-toc,
.side-card {
  background:
    linear-gradient(180deg, rgba(255,252,243,.98), rgba(247,230,197,.9)),
    url("assets/generated/parchment-temple-texture.png") center / cover;
  border-color: rgba(185,106,44,.22);
}
.feature-card {
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 74px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(185,106,44,.42));
}
.prayer-section {
  position: relative;
  overflow: hidden;
  background: var(--temple-night);
  color: white;
  border-block: 1px solid rgba(255,191,74,.24);
}
.prayer-image {
  position: absolute;
  inset: 0;
}
.prayer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.82;
}
.prayer-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,6,38,.88), rgba(8,6,38,.52), rgba(8,6,38,.85));
}
.prayer-section .media-grid {
  position: relative;
  z-index: 1;
}
.prayer-section .devotion-card {
  display: block;
  background: rgba(8, 6, 38, 0.62);
  border-color: var(--sacred-border);
  color: white;
  backdrop-filter: blur(8px);
}
.prayer-section h2,
.audio-panel h2 {
  color: var(--sandal-light);
}
.prayer-section p {
  color: rgba(255,247,232,.78);
}
.audio-panel {
  background: rgba(8, 6, 38, 0.76);
  border: 1px solid var(--sacred-border);
  backdrop-filter: blur(8px);
}
.track-button {
  background: rgba(255,247,232,.1);
  border-color: rgba(255,191,74,.28);
}
.seva-section {
  padding: 96px 0;
  background:
    linear-gradient(180deg, rgba(255,247,232,.92), rgba(244,223,185,.72)),
    url("assets/generated/parchment-temple-texture.png") center / 1200px auto;
}
.seva-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 38px;
  align-items: center;
}
.seva-copy h2 {
  margin: 0;
  color: var(--temple-indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.04;
}
.seva-copy p {
  color: #6d4d33;
  font-size: 1.08rem;
}
.seva-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.seva-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(185,106,44,.26);
  box-shadow: 0 28px 60px rgba(72,39,9,.18);
}
.seva-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.gallery-section {
  background:
    linear-gradient(135deg, rgba(23,16,82,.96), rgba(8,6,38,.98));
  color: white;
}
.gallery-section h2 {
  color: var(--sandal-light);
}
.gallery-section p {
  color: rgba(255,247,232,.78);
}
.gallery-thumb img,
.asset-thumb img {
  border: 1px solid rgba(185,106,44,.2);
}
.donation-band {
  background:
    linear-gradient(135deg, rgba(8,6,38,.95), rgba(23,16,82,.94)),
    url("assets/generated/hero-temple-evening.png") center / cover;
  border-top: 1px solid rgba(255,191,74,.22);
}
.site-footer {
  background:
    linear-gradient(180deg, #0d0935, #07051e);
  border-top: 1px solid rgba(255,191,74,.2);
}
.page-hero {
  background:
    linear-gradient(90deg, rgba(8,6,38,.94), rgba(23,16,82,.78), rgba(8,6,38,.72)),
    url("assets/generated/hero-temple-evening.png") center / cover;
  border-bottom: 1px solid rgba(255,191,74,.22);
}
.page-context {
  background: rgba(8,6,38,.58);
  border-color: var(--sacred-border);
}
.content-layout {
  background: rgba(255,247,232,.54);
}
.content-article {
  position: relative;
}
.content-article::before,
.content-article::after {
  content: "";
  position: absolute;
  width: 78px;
  height: 78px;
  border-color: rgba(185,106,44,.35);
  pointer-events: none;
}
.content-article::before {
  top: 16px;
  left: 16px;
  border-top: 2px solid rgba(185,106,44,.35);
  border-left: 2px solid rgba(185,106,44,.35);
}
.content-article::after {
  right: 16px;
  bottom: 16px;
  border-right: 2px solid rgba(185,106,44,.35);
  border-bottom: 2px solid rgba(185,106,44,.35);
}
.content-article h2,
.content-article h3,
.content-article h4 {
  color: var(--temple-indigo);
}
.content-assets {
  border-top-color: rgba(185,106,44,.22);
}
.download-row,
.media-row,
.embed-list a {
  background: rgba(255,252,243,.72);
  border-color: rgba(185,106,44,.2);
}
.footer-logo {
  border: 1px solid rgba(255,191,74,.2);
  background: rgba(255,247,232,.07);
}
@media (max-width: 1060px) {
  .sacred-rail {
    justify-content: center;
    flex-wrap: wrap;
    min-height: 42px;
    padding: 6px 0;
  }
  .devotional-hero .hero-grid,
  .seva-grid {
    grid-template-columns: 1fr;
  }
  .hero-devotion-panel {
    max-width: 520px;
  }
  .quick-dock {
    margin-top: 0;
  }
}
@media (max-width: 700px) {
  body {
    background: var(--sandal-light);
  }
  .sacred-rail {
    display: none;
  }
  .devotional-hero {
    min-height: auto;
    padding-bottom: 36px;
  }
  .hero-backdrop img {
    object-position: center;
  }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(8,6,38,.94), rgba(8,6,38,.78) 56%, rgba(8,6,38,.92)),
      linear-gradient(90deg, rgba(8,6,38,.88), rgba(8,6,38,.44));
  }
  .devotional-hero .hero-grid {
    padding: 44px 0 26px;
  }
  .hero-devotion-panel {
    padding: 16px;
  }
  .hero-deity {
    width: 140px;
  }
  .quick-dock {
    width: min(100% - 24px, 1180px);
    padding: 12px;
  }
  .quick-title-row,
  .seva-actions {
    display: block;
  }
  .quick-title-row p {
    margin-top: 4px;
  }
  .seva-section {
    padding: 58px 0;
  }
  .prayer-image img {
    object-position: center left;
  }
}

/* Concept fidelity pass: logo palette, parchment dashboard, and lighter content rhythm */
:root {
  --concept-night: #07142f;
  --concept-night-2: #060b22;
  --concept-navy: #0c2148;
  --concept-saffron: #ef7900;
  --concept-saffron-dark: #c84b00;
  --concept-gold: #dca43a;
  --concept-copper: #b75a23;
  --concept-parchment: #f6ead4;
  --concept-paper: #fff8ea;
  --concept-ink: #23170f;
  --concept-brown: #684526;
  --concept-line: rgba(183, 90, 35, 0.26);
}
body {
  background:
    linear-gradient(180deg, var(--concept-night-2) 0 86px, var(--concept-parchment) 86px),
    url("assets/generated/parchment-temple-texture.png") top center / 1360px auto fixed;
  color: var(--concept-ink);
}
.site-header.concept-header {
  background: rgba(6, 13, 34, 0.98);
  border-bottom: 1px solid rgba(220, 164, 58, 0.28);
  box-shadow: 0 12px 34px rgba(2, 5, 18, 0.28);
}
.sacred-rail {
  display: none;
}
.concept-rail {
  width: min(1500px, calc(100% - 72px));
  min-height: 86px;
  gap: 24px;
}
.concept-brand {
  min-width: 360px;
  align-self: stretch;
  gap: 14px;
  padding: 10px 18px 10px 12px;
  border-radius: 0 0 8px 8px;
  border: 1px solid rgba(220, 164, 58, 0.22);
  border-top: 0;
  background: rgba(255, 248, 234, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 234, 0.04);
}
.concept-brand img,
.concept-brand.brand img {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  object-fit: cover;
  background: var(--concept-paper);
  border: 1px solid rgba(220, 164, 58, 0.38);
}
.brand-copy {
  display: grid;
  gap: 3px;
}
.brand-copy strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 0.98;
  text-transform: uppercase;
}
.brand-copy small {
  color: #ffd571;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
}
.desktop-nav {
  justify-content: center;
  gap: 2px;
}
.nav-item {
  position: relative;
}
.desktop-nav a,
.mobile-nav a {
  color: rgba(255, 248, 234, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 7px;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  background: transparent;
  color: #ffd571;
}
.desktop-nav .nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 240px;
  transform: translateX(-50%) translateY(8px);
  padding: 10px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(220, 164, 58, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,248,234,.98), rgba(246,234,212,.98)),
    url("assets/generated/parchment-temple-texture.png") center / 900px auto;
  box-shadow: 0 20px 50px rgba(2, 5, 18, 0.26);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}
.desktop-nav .nav-dropdown::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.desktop-nav .has-dropdown:hover .nav-dropdown,
.desktop-nav .has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.desktop-nav .nav-dropdown a {
  display: block;
  color: var(--concept-night);
  font-family: "Segoe UI", Aptos, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.25;
  padding: 10px 11px;
  border-radius: 6px;
  text-decoration: none;
}
.desktop-nav .nav-dropdown a:hover {
  background: rgba(239, 121, 0, 0.1);
  color: var(--concept-saffron-dark);
}
.mobile-nav .nav-item {
  display: grid;
}
.mobile-nav .nav-dropdown {
  display: grid;
  gap: 2px;
  margin: 0 0 8px 14px;
  padding-left: 12px;
  border-left: 1px solid rgba(220, 164, 58, 0.24);
}
.mobile-nav .nav-dropdown a {
  color: rgba(255, 248, 234, 0.74);
  font-family: "Segoe UI", Aptos, Arial, sans-serif;
  font-size: 0.9rem;
  padding: 7px 6px;
}
.header-search,
.header-donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}
.header-search {
  width: 178px;
  gap: 12px;
  padding: 0 16px;
  color: rgba(255, 248, 234, 0.88);
  border: 1px solid rgba(255, 248, 234, 0.42);
  font-size: 0.92rem;
}
.header-search span {
  flex: 1;
}
.header-search .icon {
  width: 18px;
  height: 18px;
}
.header-donate {
  gap: 9px;
  padding: 0 18px;
  background: linear-gradient(180deg, #ff9a26, var(--concept-saffron-dark));
  color: white;
  border: 1px solid rgba(255, 198, 92, 0.72);
  box-shadow: 0 12px 26px rgba(239, 121, 0, 0.26);
  font-weight: 850;
}
.header-donate .icon {
  width: 17px;
  height: 17px;
}
.devotional-hero {
  min-height: auto;
  padding-bottom: 0;
  border-bottom: 1px solid rgba(220, 164, 58, 0.28);
}
.devotional-hero .container {
  width: min(1360px, calc(100% - 80px));
}
.hero-backdrop img {
  object-position: center right;
  opacity: 1;
}
.hero-scrim {
  background:
    radial-gradient(circle at 81% 62%, rgba(239, 121, 0, 0.2), transparent 18%),
    linear-gradient(90deg, rgba(3, 8, 25, 0.93) 0%, rgba(5, 14, 35, 0.78) 38%, rgba(5, 14, 35, 0.2) 71%, rgba(5, 14, 35, 0.32) 100%),
    linear-gradient(180deg, rgba(6, 13, 34, 0.12), rgba(6, 13, 34, 0.38));
}
.devotional-hero .hero-grid {
  min-height: 338px;
  grid-template-columns: minmax(760px, 1fr) 170px;
  align-items: end;
  padding: clamp(38px, 4.5vw, 58px) 0 38px;
}
.devotional-hero .hero-copy h1 {
  max-width: 980px;
  color: white;
  font-size: clamp(3.5rem, 5.4vw, 4.85rem);
  font-weight: 500;
  line-height: 0.96;
}
.devotional-hero .hero-copy h1 span {
  color: #ffe0a1;
}
.devotional-hero .hero-copy h1::after {
  display: none;
}
.devotional-hero .hero-copy p {
  max-width: 650px;
  margin-top: 20px;
  color: rgba(255, 248, 234, 0.93);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.55vw, 1.34rem);
  line-height: 1.45;
}
.hero-actions {
  margin-top: 30px;
  gap: 20px;
}
.devotional-hero .button {
  min-width: 214px;
  min-height: 52px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
}
.button-primary {
  background: linear-gradient(180deg, #f69b23, #d95f00);
  border-color: rgba(255, 213, 113, 0.55);
}
.button-secondary {
  background: rgba(6, 13, 34, 0.58);
  color: #ffe0a1;
  border-color: rgba(255, 213, 113, 0.58);
}
.hero-sacred-count {
  justify-self: end;
  align-self: end;
  text-align: center;
  color: #ffe0a1;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}
.hero-sacred-count strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  line-height: 0.85;
  font-weight: 500;
}
.hero-sacred-count span {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.02;
}
.quick-access-strip.container {
  width: min(1540px, 100%);
}
.quick-access-strip {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  align-items: stretch;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.98), rgba(247, 232, 206, 0.98)),
    url("assets/generated/parchment-temple-texture.png") center / cover;
  border: 1px solid rgba(183, 90, 35, 0.24);
  box-shadow: 0 14px 34px rgba(67, 37, 11, 0.12);
}
.quick-heading {
  display: grid;
  place-items: center;
  padding: 18px 22px;
  border-right: 1px solid var(--concept-line);
}
.quick-heading h2 {
  margin: 0;
  color: var(--concept-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.05;
  text-transform: uppercase;
}
.quick-heading h2::after,
.panel-rule {
  content: "";
  display: block;
  width: 54px;
  height: 9px;
  margin: 10px auto 0;
  background:
    radial-gradient(circle at center, var(--concept-copper) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent, var(--concept-copper), transparent);
  opacity: 0.88;
}
.quick-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
}
.quick-access-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 86px;
  padding: 12px 22px;
  color: var(--concept-ink);
  text-decoration: none;
  border-left: 1px solid rgba(183, 90, 35, 0.18);
}
.quick-access-item:first-child {
  border-left: 0;
}
.quick-access-item .icon {
  width: 40px;
  height: 40px;
  color: var(--concept-saffron-dark);
  stroke-width: 1.55;
}
.quick-access-item span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.1;
}
.concept-dashboard {
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.98), rgba(246, 234, 212, 0.98)),
    url("assets/generated/parchment-temple-texture.png") center / 1500px auto;
  border-bottom: 1px solid rgba(183, 90, 35, 0.26);
}
.dashboard-grid {
  width: min(1540px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr 1.15fr 1.08fr;
  border-inline: 1px solid rgba(183, 90, 35, 0.22);
}
.dashboard-panel {
  min-height: 340px;
  padding: 30px 30px 26px;
  border-right: 1px solid rgba(183, 90, 35, 0.26);
}
.dashboard-panel:last-child {
  border-right: 0;
}
.dashboard-panel h2 {
  margin: 0;
  color: var(--concept-night);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}
.panel-rule {
  margin-bottom: 20px;
}
.prayer-player {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 176px;
  padding: 12px;
  background: rgba(255, 252, 243, 0.62);
  border: 1px solid rgba(183, 90, 35, 0.24);
  border-radius: 8px;
}
.prayer-player img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center top;
  border-radius: 7px;
  border: 1px solid rgba(183, 90, 35, 0.2);
}
.prayer-player strong {
  display: block;
  color: var(--concept-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
}
.prayer-player small {
  display: block;
  color: var(--concept-brown);
  margin-bottom: 10px;
}
.track-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 9px;
}
.mini-track {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(183, 90, 35, 0.22);
  border-radius: 999px;
  background: rgba(255, 248, 234, 0.74);
  color: var(--concept-night);
  padding: 6px 9px;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}
.mini-track .icon {
  width: 13px;
  height: 13px;
}
.panel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  margin: 20px auto 0;
  padding: 8px 18px;
  width: fit-content;
  color: var(--concept-night);
  text-decoration: none;
  border: 1px solid rgba(183, 90, 35, 0.32);
  border-radius: 7px;
  background: rgba(255, 248, 234, 0.75);
  font-weight: 850;
  font-size: 0.86rem;
}
.panel-button.dark {
  color: white;
  background: var(--concept-night);
  border-color: var(--concept-night);
}
.panel-button.orange {
  color: white;
  background: linear-gradient(180deg, #ed7f12, #cc5300);
  border-color: rgba(183, 90, 35, 0.4);
}
.prayer-audio-panel,
.seva-panel,
.events-resources-panel,
.gallery-panel {
  display: flex;
  flex-direction: column;
}
.seva-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.seva-tile {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 82px;
  color: var(--concept-ink);
  text-decoration: none;
  background: rgba(255, 252, 243, 0.62);
  border: 1px solid rgba(183, 90, 35, 0.2);
  border-radius: 8px;
  overflow: hidden;
}
.seva-tile img {
  width: 52px;
  height: 82px;
  object-fit: cover;
}
.seva-tile span {
  min-width: 0;
  padding-right: 4px;
}
.seva-tile strong {
  font-size: 0.78rem;
  line-height: 1.08;
  overflow-wrap: anywhere;
}
.seva-tile small {
  font-size: 0.68rem;
  overflow-wrap: anywhere;
}
.seva-tile strong,
.dashboard-resource strong,
.dashboard-event strong {
  display: block;
  color: var(--concept-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.94rem;
  line-height: 1.15;
}
.seva-tile small,
.dashboard-resource small,
.dashboard-event small {
  display: block;
  margin-top: 3px;
  color: var(--concept-brown);
  font-size: 0.76rem;
  line-height: 1.2;
}
.seva-mini-grid .seva-tile strong {
  font-size: 0.78rem;
  line-height: 1.08;
}
.seva-mini-grid .seva-tile small {
  font-size: 0.68rem;
  line-height: 1.16;
}
.event-resource-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.84fr);
  gap: 14px;
}
.dashboard-events,
.dashboard-resources {
  display: grid;
  gap: 10px;
}
.dashboard-event {
  display: grid;
  grid-template-columns: 48px 1fr 18px;
  gap: 10px;
  align-items: center;
  min-height: 62px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 252, 243, 0.56);
  border: 1px solid rgba(183, 90, 35, 0.2);
  border-radius: 8px;
  padding: 7px;
}
.event-date {
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(183, 90, 35, 0.34);
  border-radius: 6px;
  background: var(--concept-paper);
}
.event-date b {
  display: block;
  background: var(--concept-saffron-dark);
  color: white;
  font-size: 0.68rem;
  line-height: 1.6;
}
.event-date strong {
  display: block;
  color: var(--concept-night);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.2;
}
.dashboard-event .icon {
  width: 16px;
  height: 16px;
  color: var(--concept-copper);
}
.dashboard-resource {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 62px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 252, 243, 0.58);
  border: 1px solid rgba(183, 90, 35, 0.2);
  border-radius: 8px;
  padding: 10px;
}
.dashboard-resource .icon {
  color: var(--concept-copper);
}
.dashboard-event strong,
.dashboard-event small,
.dashboard-resource small {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.dashboard-event strong {
  -webkit-line-clamp: 2;
}
.dashboard-event small,
.dashboard-resource small {
  -webkit-line-clamp: 2;
}
.concept-gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.concept-gallery-thumb img {
  aspect-ratio: 1.7 / 1;
  border-radius: 7px;
}
.gallery-panel .panel-button,
.events-resources-panel .panel-button,
.seva-panel .panel-button {
  margin-top: auto;
}
.faith-breather {
  background:
    linear-gradient(180deg, #07142f, #061027);
  color: white;
  border-block: 1px solid rgba(220, 164, 58, 0.24);
}
.faith-breather .container {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faith-breather span {
  color: #ffd571;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}
.faith-breather strong {
  color: rgba(255, 248, 234, 0.84);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
.archive-search-breather {
  padding: 54px 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.96), rgba(246, 234, 212, 0.92)),
    url("assets/generated/parchment-temple-texture.png") center / 1320px auto;
}
.archive-search-breather .search-shell {
  grid-template-columns: 0.58fr 1fr;
  gap: 34px;
}
.archive-search-breather h2 {
  margin: 0;
  color: var(--concept-night);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.05;
}
.archive-search-breather p {
  color: var(--concept-brown);
}
.archive-search-breather .search-panel {
  background: rgba(255, 252, 243, 0.76);
  border-color: rgba(183, 90, 35, 0.24);
  box-shadow: 0 18px 40px rgba(67, 37, 11, 0.1);
}
.devotee-action-band {
  padding: 64px 0;
  color: white;
  background:
    linear-gradient(90deg, rgba(6, 13, 34, 0.96), rgba(9, 25, 57, 0.86)),
    url("assets/generated/hero-temple-evening.png") center / cover;
  border-top: 1px solid rgba(220, 164, 58, 0.24);
}
.devotee-action-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.devotee-action-band h2 {
  margin: 0;
  color: #fff8ea;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  line-height: 1.08;
}
.devotee-action-band p {
  max-width: 680px;
  color: rgba(255, 248, 234, 0.78);
}
.site-footer {
  background: linear-gradient(180deg, #07142f, #050a1f);
  border-top: 1px solid rgba(220, 164, 58, 0.18);
}
.footer-grid {
  width: min(1360px, calc(100% - 40px));
}
.footer-logo {
  background: rgba(255, 248, 234, 0.06);
  border-color: rgba(220, 164, 58, 0.22);
}
.page-hero {
  padding: 58px 0 46px;
  background:
    linear-gradient(90deg, rgba(6, 13, 34, 0.94), rgba(10, 33, 72, 0.74)),
    url("assets/generated/hero-temple-evening.png") center / cover;
}
.page-context {
  background: rgba(255, 248, 234, 0.08);
  border-color: rgba(220, 164, 58, 0.28);
}
.content-layout {
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.78), rgba(246, 234, 212, 0.76)),
    url("assets/generated/parchment-temple-texture.png") center / 1300px auto;
  grid-template-columns: 280px minmax(0, 900px);
  justify-content: center;
}
.page-toc,
.side-card,
.content-article,
.related-card {
  background: rgba(255, 252, 243, 0.82);
  border-color: rgba(183, 90, 35, 0.24);
}
.page-toc a,
.side-card a {
  color: var(--concept-night);
  border-bottom-color: rgba(183, 90, 35, 0.14);
}
.content-article {
  box-shadow: 0 18px 42px rgba(67, 37, 11, 0.1);
}
.content-article p,
.content-article li {
  max-width: 76ch;
  color: #3c2b1d;
  line-height: 1.75;
}
.content-article h2,
.content-article h3,
.content-article h4 {
  color: var(--concept-night);
}
.article-summary {
  margin: 0 0 30px;
  padding: 18px 20px;
  background: rgba(246, 234, 212, 0.62);
  border: 1px solid rgba(183, 90, 35, 0.2);
  border-radius: 8px;
}
.article-summary span {
  display: block;
  color: var(--concept-copper);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.article-summary p {
  margin: 6px 0 0;
  max-width: 70ch;
  color: var(--concept-brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.55;
}
.article-section {
  margin: 34px 0;
  padding-top: 28px;
  border-top: 1px solid rgba(183, 90, 35, 0.2);
}
.article-section h2:first-child {
  margin-top: 0;
}
.article-breather {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 34px 0;
  color: var(--concept-copper);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  text-align: center;
}
.article-breather::before,
.article-breather::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(183, 90, 35, 0.4));
}
.article-breather::after {
  background: linear-gradient(90deg, rgba(183, 90, 35, 0.4), transparent);
}
.content-assets {
  margin-top: 40px;
  padding: 28px;
  border: 1px solid rgba(183, 90, 35, 0.2);
  border-radius: 8px;
  background: rgba(246, 234, 212, 0.42);
}
.trustees-main .page-hero {
  padding-bottom: 54px;
}
.trustees-directory {
  padding: 64px 0 86px;
}
.trustees-summary {
  max-width: 920px;
  margin-inline: auto;
}
.trustees-section {
  margin-top: 48px;
}
.trustees-section h2 {
  margin: 0 0 24px;
  color: var(--concept-night);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
  text-align: center;
}
.trustees-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.trustee-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(183, 90, 35, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 252, 243, 0.92), rgba(246, 234, 212, 0.88)),
    url("assets/generated/parchment-temple-texture.png") center / 760px auto;
  box-shadow: 0 14px 34px rgba(67, 37, 11, 0.1);
}
.trustee-card img {
  width: min(190px, 74%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin: 26px auto 0;
  border: 5px solid rgba(255, 248, 234, 0.9);
  box-shadow: 0 14px 30px rgba(67, 37, 11, 0.18);
}
.trustee-card-copy {
  margin-top: -18px;
  padding: 42px 20px 24px;
  background: linear-gradient(180deg, var(--concept-night), #0a1640);
  color: white;
  text-align: center;
  min-height: 228px;
}
.trustee-card h3 {
  margin: 0;
  color: #fff8ea;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.18;
}
.trustee-card p {
  margin: 8px 0 14px;
  color: #ffd571;
  font-weight: 780;
  line-height: 1.35;
}
.trustee-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 213, 113, 0.22);
  list-style: none;
}
.trustee-card li {
  color: rgba(255, 248, 234, 0.82);
  font-size: 0.88rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.former-trustees {
  padding-top: 18px;
}
.former-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.trustee-card.compact img {
  width: min(142px, 68%);
}
.trustee-card.compact .trustee-card-copy {
  min-height: 146px;
}
.trustee-card.compact h3 {
  font-size: 1.02rem;
}
.download-row,
.media-row,
.embed-list a,
.search-result {
  background: rgba(255, 252, 243, 0.76);
  border-color: rgba(183, 90, 35, 0.2);
}
@media (max-width: 1320px) {
  .concept-rail {
    width: min(100% - 36px, 1500px);
    gap: 16px;
  }
  .concept-brand {
    min-width: 318px;
  }
  .brand-copy strong {
    font-size: 1.12rem;
  }
  .header-search {
    width: 150px;
  }
  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trustees-grid,
  .former-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .dashboard-panel:nth-child(2) {
    border-right: 0;
  }
  .dashboard-panel:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(183, 90, 35, 0.26);
  }
}
@media (max-width: 1060px) {
  .concept-brand {
    min-width: 0;
    align-self: center;
    padding: 8px 10px;
  }
  .concept-brand img,
  .concept-brand.brand img {
    width: 54px;
    height: 54px;
  }
  .header-search,
  .header-donate {
    display: none;
  }
  .devotional-hero .hero-grid {
    grid-template-columns: 1fr;
  }
  .devotional-hero .container {
    width: min(100% - 40px, 1360px);
  }
  .hero-sacred-count {
    display: none;
  }
  .quick-access-strip {
    grid-template-columns: 1fr;
  }
  .quick-heading {
    border-right: 0;
    border-bottom: 1px solid var(--concept-line);
  }
  .quick-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .trustees-grid,
  .former-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .archive-search-breather .search-shell,
  .devotee-action-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
}
@media (max-width: 760px) {
  body {
    background: var(--concept-parchment);
  }
  .concept-rail {
    width: min(100% - 24px, 1500px);
    min-height: 72px;
  }
  .brand-copy strong {
    font-size: 0.92rem;
  }
  .brand-copy small {
    font-size: 0.66rem;
  }
  .devotional-hero .hero-grid {
    min-height: 430px;
    padding: 58px 0 42px;
  }
  .devotional-hero .container {
    width: min(100% - 28px, 1360px);
  }
  .devotional-hero .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4rem);
  }
  .devotional-hero .hero-copy p {
    font-size: 1.08rem;
  }
  .devotional-hero .button {
    width: 100%;
    min-width: 0;
  }
  .quick-strip,
  .dashboard-grid,
  .event-resource-grid,
  .seva-mini-grid,
  .concept-gallery-grid,
  .trustees-grid,
  .former-grid {
    grid-template-columns: 1fr;
  }
  .trustees-directory {
    padding: 42px 0 58px;
  }
  .dashboard-panel,
  .dashboard-panel:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(183, 90, 35, 0.26);
  }
  .dashboard-panel:last-child {
    border-bottom: 0;
  }
  .quick-access-item {
    min-height: 72px;
    border-left: 0;
    border-top: 1px solid rgba(183, 90, 35, 0.16);
  }
  .prayer-player {
    grid-template-columns: 92px 1fr;
  }
  .prayer-player img {
    height: 132px;
  }
  .faith-breather .container {
    display: grid;
    align-content: center;
    gap: 2px;
  }
  .content-assets {
    padding: 18px;
  }
  .article-breather {
    font-size: 0.9rem;
  }
}

/* 2026 content-first spiritual redesign */
:root {
  --sacred-navy: #071a36;
  --sacred-blue: #102b54;
  --sacred-saffron: #dc6817;
  --sacred-gold: #d6a848;
  --sacred-cream: #fffaf0;
  --sacred-sand: #f3ead9;
  --sacred-ink: #231b14;
}
body { background: var(--sacred-cream); overflow-x: clip; }
.concept-rail { width: min(100% - 40px, 1380px); gap: 20px; }
.concept-brand { min-width: 320px; border: 0; background: transparent; box-shadow: none; padding-inline: 0; }
.concept-brand img,
.concept-brand.brand img { width: 60px; height: 60px; border: 0; border-radius: 50%; background: transparent; }
.brand-copy strong { letter-spacing: .015em; font-size: 1.05rem; line-height: 1.05; }
.brand-copy small { color: #e6c86d; letter-spacing: .08em; text-transform: uppercase; font-size: .62rem; }
.desktop-nav { flex: 1; }
.desktop-nav a { font-family: "Segoe UI", Aptos, sans-serif; font-size: .84rem; font-weight: 750; }
.header-search { width: 46px; padding: 0; border: 0; }
.header-search span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.header-search .icon { width: 21px; height: 21px; }
.header-donate { min-height: 44px; }

.devotional-hero { min-height: 630px; }
.devotional-hero .hero-grid { min-height: 630px; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .6fr); align-items: center; padding: 80px 0; }
.devotional-hero .hero-copy { max-width: 770px; }
.hero-eyebrow,
.section-kicker,
.section-heading > span { display: block; margin-bottom: 15px; color: #e8c66b; font-size: .73rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.devotional-hero .hero-copy h1 { max-width: 760px; font-size: clamp(3.8rem, 6.5vw, 6rem); line-height: .94; letter-spacing: -.035em; }
.devotional-hero .hero-copy p { max-width: 690px; font-family: "Segoe UI", Aptos, sans-serif; font-size: clamp(1.08rem, 1.6vw, 1.3rem); line-height: 1.55; }
.hero-mantra { align-self: end; justify-self: end; max-width: 300px; padding: 24px 0 0 26px; border-left: 1px solid rgba(232,198,107,.45); color: white; }
.hero-mantra span,
.hero-mantra small { display: block; color: rgba(255,250,240,.76); }
.hero-mantra span { font-size: .88rem; letter-spacing: .04em; }
.hero-mantra strong { display: block; margin: 4px 0; color: #f2d888; font-family: Georgia, serif; font-size: 2.1rem; font-weight: 500; }
.hero-mantra small { line-height: 1.45; }

.trust-proof { color: white; background: var(--sacred-navy); border-block: 1px solid rgba(214,168,72,.25); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: center; min-height: 92px; padding: 20px 34px; border-right: 1px solid rgba(214,168,72,.22); }
.proof-grid > div:last-child { border-right: 0; }
.proof-grid strong { color: #f0cd76; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
.proof-grid span { color: rgba(255,250,240,.75); font-size: .86rem; line-height: 1.3; }

.intent-section { padding-block: 92px; }
.section-heading { max-width: 750px; margin-bottom: 40px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading > span,
.section-kicker { color: var(--sacred-saffron); }
.section-heading h2,
.prayer-focus h2,
.pilgrimage-focus h2,
.seva-focus h2 { margin: 0; color: var(--sacred-navy); font-family: Georgia, serif; font-size: clamp(2.3rem, 4.5vw, 4rem); font-weight: 500; line-height: 1.04; letter-spacing: -.025em; }
.section-heading p { color: #6b5a49; font-size: 1.06rem; }
.intent-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.intent-card { display: grid; grid-template-columns: 56px 1fr 22px; gap: 18px; align-items: center; min-height: 126px; padding: 25px 28px; color: var(--sacred-ink); text-decoration: none; border: 1px solid rgba(16,43,84,.13); border-radius: 12px; background: white; box-shadow: 0 10px 26px rgba(7,26,54,.055); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.intent-card:hover { transform: translateY(-3px); border-color: rgba(220,104,23,.45); box-shadow: 0 16px 35px rgba(7,26,54,.1); }
.intent-card > .icon:first-child { width: 42px; height: 42px; color: var(--sacred-saffron); stroke-width: 1.45; }
.intent-card > .icon:last-child { width: 18px; height: 18px; color: #987347; }
.intent-card strong,
.intent-card small { display: block; }
.intent-card strong { color: var(--sacred-navy); font-family: Georgia, serif; font-size: 1.22rem; }
.intent-card small { margin-top: 5px; color: #756656; line-height: 1.4; }

.prayer-focus { padding: 100px 0; color: white; background: linear-gradient(135deg, #071a36, #0f2b54); }
.prayer-focus-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr); gap: clamp(50px, 7vw, 100px); align-items: center; }
.prayer-focus h2 { color: #fffaf0; }
.prayer-copy blockquote { margin: 35px 0 25px; padding: 4px 0 4px 25px; border-left: 2px solid var(--sacred-gold); }
.prayer-copy blockquote p { margin: 0; color: #f3d98f; font-family: Georgia, serif; font-size: clamp(1.05rem, 1.55vw, 1.28rem); line-height: 1.7; }
.prayer-copy > p { max-width: 690px; color: rgba(255,250,240,.72); line-height: 1.75; }
.inline-links { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 27px; }
.inline-links a { display: inline-flex; align-items: center; gap: 8px; color: inherit; font-weight: 800; text-decoration-color: rgba(220,104,23,.45); text-underline-offset: 5px; }
.inline-links .icon { width: 16px; height: 16px; }
.prayer-copy .inline-links a { color: #f2d888; }
.prayer-console { padding: 34px; border: 1px solid rgba(214,168,72,.34); border-radius: 16px; background: rgba(255,250,240,.06); box-shadow: 0 25px 70px rgba(0,0,0,.18); }
.console-mark { display: flex; align-items: center; gap: 18px; margin-bottom: 25px; padding-bottom: 22px; border-bottom: 1px solid rgba(214,168,72,.22); }
.console-mark img { width: 72px; height: 72px; }
.console-mark span { color: #f2d888; font-family: Georgia, serif; font-size: 1.18rem; }
.prayer-console > strong,
.prayer-console > small { display: block; }
.prayer-console > strong { color: white; font-size: 1.12rem; }
.prayer-console > small { margin: 5px 0 16px; color: rgba(255,250,240,.6); }
.prayer-console audio { width: 100%; }
.prayer-console .mini-track { color: #fffaf0; border-color: rgba(214,168,72,.3); background: rgba(255,250,240,.07); }
.chant-note { margin: 22px 0 0; color: rgba(255,250,240,.58); font-size: .83rem; line-height: 1.5; }

.pilgrimage-focus { padding: 100px 0 0; background: #f3ead9; }
.pilgrimage-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(500px,1.15fr); gap: clamp(55px,8vw,120px); align-items: start; }
.pilgrimage-lead { position: sticky; top: 125px; padding-bottom: 70px; }
.pilgrimage-lead > p { color: #665746; font-size: 1.05rem; line-height: 1.75; }
.pilgrimage-lead .button { margin-top: 18px; }
.vratam-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(16,43,84,.16); }
.vratam-list li { display: grid; grid-template-columns: 60px 1fr; gap: 22px; padding: 28px 0; border-bottom: 1px solid rgba(16,43,84,.16); }
.vratam-list li > span { color: var(--sacred-saffron); font-family: Georgia, serif; font-size: 1.2rem; }
.vratam-list strong { color: var(--sacred-navy); font-family: Georgia, serif; font-size: 1.25rem; }
.vratam-list p { margin: 7px 0 0; color: #6d5d4b; line-height: 1.6; }
.pilgrim-links { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 68px; }
.pilgrim-links a { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: center; min-height: 112px; padding: 24px; color: white; text-decoration: none; background: var(--sacred-navy); border-right: 1px solid rgba(214,168,72,.22); }
.pilgrim-links a:first-child { border-radius: 12px 0 0 0; }
.pilgrim-links a:last-child { border: 0; border-radius: 0 12px 0 0; }
.pilgrim-links .icon { color: #e8bf61; }
.pilgrim-links strong,
.pilgrim-links small { display: block; }
.pilgrim-links strong { color: white; font-family: Georgia, serif; }
.pilgrim-links small { margin-top: 4px; color: rgba(255,250,240,.58); font-size: .76rem; }

.seva-focus { padding: 110px 0; background: var(--sacred-cream); }
.seva-focus-grid { display: grid; grid-template-columns: minmax(400px,.9fr) minmax(0,1.1fr); gap: clamp(45px,7vw,95px); align-items: center; }
.seva-photo { position: relative; }
.seva-photo img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; box-shadow: 0 28px 60px rgba(7,26,54,.16); }
.seva-photo span { position: absolute; right: -20px; bottom: 24px; padding: 13px 18px; color: white; background: var(--sacred-saffron); border-radius: 6px; font-family: Georgia, serif; }
.seva-copy-new > p { color: #675747; line-height: 1.75; }
.service-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px 28px; margin: 28px 0; padding: 0; list-style: none; }
.service-list li { position: relative; padding-left: 22px; color: var(--sacred-navy); font-weight: 720; line-height: 1.45; }
.service-list li::before { content: ""; position: absolute; left: 0; top: .56em; width: 8px; height: 8px; border-radius: 50%; background: var(--sacred-saffron); }
.seva-copy-new .inline-links a { color: var(--sacred-navy); }

.archive-search-breather { padding: 90px 0; background: #eee2ce; }
.archive-search-breather .search-shell { grid-template-columns: .72fr 1fr; gap: 60px; align-items: start; }
.archive-search-breather .search-shell > *,
.search-panel,
.search-input input,
.search-result { min-width: 0; }
.search-result { overflow-wrap: anywhere; }
.archive-search-breather h2 { font-size: clamp(2.6rem,4.7vw,4.2rem); }
.search-panel { border-radius: 14px; }
.devotee-action-band { padding: 82px 0; }
.devotee-action-band .section-kicker { color: #e9c467; }
.site-footer .footer-grid { padding-top: 72px; }
.footer-brand { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.footer-brand img { width: 68px; height: 68px; }
.footer-brand strong,
.footer-brand span { display: block; }
.footer-brand strong { color: white; font-family: Georgia, serif; line-height: 1.12; }
.footer-brand span { margin-top: 5px; color: #e6c86d; font-size: .76rem; }
.footer-bottom { flex-wrap: wrap; gap: 12px 25px; }
.footer-bottom a { color: #efcd76; }
.page-context strong { font-size: 3rem; }
.devotional-guide { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; margin: 0 0 28px; }
.devotional-guide > div { display: grid; grid-template-columns: 28px 1fr; gap: 10px; min-width: 0; padding: 15px 13px; border: 1px solid rgba(220,104,23,.18); border-radius: 9px; background: #fff8eb; }
.devotional-guide .icon { width: 24px; height: 24px; color: var(--sacred-saffron); }
.devotional-guide strong,
.devotional-guide small { display: block; }
.devotional-guide strong { color: var(--sacred-navy); font-size: .88rem; }
.devotional-guide small { margin-top: 3px; color: #786858; font-size: .72rem; line-height: 1.35; }
.travel-note { display: grid; grid-template-columns: auto 1fr; gap: 14px; margin: 0 0 28px; padding: 16px 18px; border-left: 3px solid var(--sacred-saffron); background: #fff3df; color: #66503b; }
.travel-note strong { color: var(--sacred-navy); }
.travel-note span { line-height: 1.5; }

@media (max-width: 1180px) {
  .concept-brand { min-width: 285px; }
  .desktop-nav a { padding-inline: 5px; font-size: .78rem; }
  .header-search { display: none; }
  .proof-grid > div { padding-inline: 20px; }
  .devotional-hero .hero-grid { grid-template-columns: 1fr 270px; }
}
@media (max-width: 960px) {
  .devotional-hero { min-height: 560px; }
  .devotional-hero .hero-grid { min-height: 560px; grid-template-columns: 1fr; align-content: center; }
  .hero-mantra { display: none; }
  .proof-grid { grid-template-columns: repeat(2,1fr); }
  .proof-grid > div:nth-child(2) { border-right: 0; }
  .proof-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(214,168,72,.22); }
  .prayer-focus-grid,
  .pilgrimage-grid,
  .seva-focus-grid,
  .content-layout { grid-template-columns: minmax(0,1fr); }
  .content-layout > * { min-width: 0; }
  .content-side { position: static; order: 2; }
  .pilgrimage-lead { position: static; padding-bottom: 0; }
  .pilgrim-links { grid-template-columns: repeat(2,1fr); }
  .pilgrim-links a:nth-child(2) { border-right: 0; border-radius: 0 12px 0 0; }
  .pilgrim-links a:last-child { border-radius: 0; }
  .seva-photo { max-width: 680px; }
  .seva-photo span { right: 18px; }
}
@media (max-width: 760px) {
  .concept-rail { width: calc(100% - 28px); }
  .concept-brand { min-width: 0; gap: 10px; }
  .concept-brand img,
  .concept-brand.brand img { width: 48px; height: 48px; }
  .brand-copy strong { font-size: .82rem; }
  .brand-copy small { display: none; }
  .devotional-hero { min-height: 520px; }
  .devotional-hero .hero-grid { min-height: 520px; padding-block: 55px; }
  .devotional-hero .hero-copy h1 { font-size: clamp(3rem,15vw,4.1rem); }
  .hero-eyebrow { max-width: 280px; line-height: 1.5; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div { grid-template-columns: 1fr; gap: 4px; min-height: 112px; padding: 17px; }
  .proof-grid strong { font-size: 1.7rem; }
  .intent-section,
  .prayer-focus,
  .seva-focus { padding-block: 68px; }
  .intent-grid,
  .service-list { grid-template-columns: 1fr; }
  .intent-card { grid-template-columns: 44px 1fr 18px; min-height: 112px; padding: 21px 18px; }
  .intent-card > .icon:first-child { width: 34px; height: 34px; }
  .prayer-console { padding: 24px 20px; }
  .prayer-copy blockquote { padding-left: 18px; }
  .pilgrimage-focus { padding-top: 68px; }
  .vratam-list li { grid-template-columns: 42px 1fr; gap: 12px; }
  .pilgrim-links { grid-template-columns: 1fr; margin-top: 45px; }
  .pilgrim-links a,
  .pilgrim-links a:first-child,
  .pilgrim-links a:nth-child(2),
  .pilgrim-links a:last-child { border-right: 0; border-bottom: 1px solid rgba(214,168,72,.22); border-radius: 0; }
  .seva-focus-grid { gap: 42px; }
  .seva-photo { order: 2; }
  .seva-photo span { position: static; display: block; border-radius: 0 0 8px 8px; text-align: center; }
  .archive-search-breather { padding-block: 65px; }
  .archive-search-breather .search-shell { grid-template-columns: 1fr; gap: 30px; }
  .filter-row { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 7px; }
  .filter-row button { white-space: nowrap; }
  .devotee-action-band .donation-actions { display: grid; width: 100%; }
  .devotional-guide { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .travel-note { grid-template-columns: 1fr; gap: 4px; }
}

/* Shared inner-page layout: full-bleed section bands and deliberate spacing */
.page-main {
  background: var(--sacred-cream);
}
.intent-section {
  width: 100%;
  background: #fffaf0;
  border-bottom: 1px solid rgba(183, 90, 35, .12);
}
.content-section {
  position: relative;
  isolation: isolate;
  width: 100%;
  padding: clamp(64px, 6vw, 96px) 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, .94), rgba(243, 234, 217, .92)),
    url("assets/generated/parchment-temple-texture.png") center / cover no-repeat;
  border-bottom: 1px solid rgba(183, 90, 35, .16);
}
.content-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(214, 168, 72, .09), transparent 26%),
    radial-gradient(circle at 92% 78%, rgba(220, 104, 23, .07), transparent 30%);
  pointer-events: none;
}
.content-layout {
  width: min(1240px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
  justify-content: initial;
  padding: 0;
  background: transparent;
}
.content-side {
  gap: 20px;
}
.page-toc,
.side-card {
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 253, 248, .95);
  box-shadow: 0 12px 32px rgba(7, 26, 54, .06);
}
.page-toc {
  max-height: calc(100vh - var(--header-h) - 48px);
  overflow-y: auto;
}
.page-toc a,
.side-card a {
  padding: 10px 0;
  font-size: .9rem;
  line-height: 1.45;
}
.content-article {
  width: 100%;
  min-height: 360px;
  padding: clamp(30px, 4vw, 58px);
  border-radius: 14px;
  background: rgba(255, 253, 248, .97);
  box-shadow: 0 22px 58px rgba(67, 37, 11, .11);
}
.content-article > :first-child,
.content-article > .article-section:first-child > :first-child {
  margin-top: 0;
}
.article-section {
  margin: 42px 0 0;
  padding-top: 34px;
}
.article-section:last-child {
  margin-bottom: 0;
}
.article-summary {
  margin-bottom: 38px;
  padding: 20px 22px;
}
.related-section {
  width: 100%;
  padding: clamp(70px, 7vw, 104px) 0 clamp(82px, 8vw, 120px);
  background: #fffaf2;
  border-top: 1px solid rgba(183, 90, 35, .14);
}
.related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin: 0 0 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(183, 90, 35, .18);
}
.related-heading span {
  order: 2;
  color: var(--sacred-saffron);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.related-section h2 {
  margin: 0;
  color: var(--sacred-navy);
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  line-height: 1;
}
.related-grid {
  gap: 18px;
}
.related-card {
  min-width: 0;
  min-height: 205px;
  padding: 24px;
  border-radius: 12px;
  background: #fffefa;
  box-shadow: 0 10px 28px rgba(7, 26, 54, .045);
}
.related-card strong {
  margin-top: 14px;
  font-size: 1.05rem;
  line-height: 1.35;
}
.related-card small {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  line-height: 1.5;
}
.trustees-band {
  width: 100%;
  padding: clamp(70px, 7vw, 104px) 0 clamp(84px, 8vw, 120px);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, .96), rgba(243, 234, 217, .94)),
    url("assets/generated/parchment-temple-texture.png") center / cover no-repeat;
}
.trustees-directory {
  padding: 0;
}

@media (max-width: 1180px) {
  .content-layout {
    width: min(100% - 40px, 1120px);
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 30px;
  }
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 960px) {
  .content-section {
    padding: 54px 0 70px;
  }
  .content-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
  .content-side {
    position: static;
    order: 0;
  }
  .content-article {
    order: 1;
    min-height: 0;
  }
  .page-toc {
    display: flex;
    gap: 8px;
    max-height: none;
    padding: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    box-shadow: none;
    scrollbar-width: thin;
  }
  .page-toc a {
    flex: 0 0 auto;
    max-width: 250px;
    padding: 8px 12px;
    border: 1px solid rgba(183, 90, 35, .18);
    border-radius: 999px;
    background: #fffaf0;
    font-size: .8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .page-toc a:last-child {
    border-bottom: 1px solid rgba(183, 90, 35, .18);
  }
  .side-card {
    display: none;
  }
}
@media (max-width: 700px) {
  .content-section {
    padding: 38px 0 52px;
  }
  .content-layout {
    width: min(100% - 28px, 1120px);
    gap: 16px;
  }
  .content-article {
    padding: 24px 18px 30px;
    border-radius: 11px;
    box-shadow: 0 14px 36px rgba(67, 37, 11, .09);
  }
  .content-article::before,
  .content-article::after {
    width: 42px;
    height: 42px;
    opacity: .55;
  }
  .article-summary {
    margin-bottom: 26px;
    padding: 16px;
  }
  .article-section {
    margin-top: 30px;
    padding-top: 24px;
  }
  .related-section {
    padding: 54px 0 70px;
  }
  .related-heading {
    display: block;
    margin-bottom: 24px;
    padding-bottom: 18px;
  }
  .related-heading span {
    display: block;
    margin-bottom: 10px;
  }
  .related-section h2 {
    font-size: clamp(2.1rem, 11vw, 2.8rem);
  }
  .related-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .related-card {
    min-height: 0;
    padding: 21px;
  }
}

/* Editorial typography and contrast system */
:root {
  --font-body: "Segoe UI", Aptos, Arial, sans-serif;
  --font-heading: Georgia, "Times New Roman", serif;
  --readable-paper: #fffdf8;
  --readable-paper-soft: #f7efe1;
  --readable-ink: #211a15;
  --readable-muted: #594b40;
  --readable-link: #172e67;
  --readable-accent: #9f3b00;
  --readable-night: #061026;
  --readable-night-text: #fffaf0;
  --readable-night-muted: #e8decd;
  --readable-gold: #f2cc72;
  --sacred-saffron: var(--readable-accent);
  --sacred-ink: var(--readable-ink);
  --concept-ink: var(--readable-ink);
  --concept-brown: var(--readable-muted);
}
html {
  font-size: 100%;
  text-size-adjust: 100%;
}
body {
  color: var(--readable-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  font-kerning: normal;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}
button,
input,
select,
textarea { font: inherit; }
p,
li,
dd,
td,
small { text-wrap: pretty; }
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--readable-night);
  font-family: var(--font-heading);
  font-weight: 650;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

/* Labels use normal capitalization; hierarchy comes from size and weight. */
.hero-audio-card span,
.event-card span,
.related-card span,
.page-context span,
.search-result span,
.hero-panel-copy span,
.brand-copy strong,
.brand-copy small,
.hero-sacred-count span,
.quick-heading h2,
.dashboard-panel h2,
.article-summary span,
.hero-eyebrow,
.section-kicker,
.section-heading > span,
.related-heading span {
  text-transform: none;
  letter-spacing: .025em;
}
.hero-eyebrow,
.section-kicker,
.section-heading > span,
.related-heading span,
.article-summary span,
.related-card span,
.search-result span {
  color: var(--readable-accent);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 720;
  line-height: 1.35;
}

/* High-contrast dark surfaces. */
.site-header,
.trust-proof,
.search-section,
.archive-search-breather,
.site-footer,
.page-hero {
  color: var(--readable-night-text);
}
.desktop-nav a,
.mobile-nav a,
.devotional-hero .hero-copy p,
.hero-mantra span,
.hero-mantra small,
.proof-grid span,
.page-hero p,
.breadcrumb,
.page-context small,
.search-shell p,
.site-footer p,
.site-footer a,
.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: var(--readable-night-muted);
}
.devotional-hero .hero-copy h1,
.page-hero h1,
.site-footer h2,
.site-footer strong { color: var(--readable-night-text); }
.hero-eyebrow,
.hero-mantra strong,
.proof-grid strong,
.brand-copy small { color: var(--readable-gold); }
.page-hero p {
  max-width: 72ch;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.65;
}
.breadcrumb { font-size: .92rem; font-weight: 600; }
.breadcrumb a { color: var(--readable-night-text); text-underline-offset: 3px; }

/* Calm, readable article rhythm. */
.content-article {
  color: var(--readable-ink);
  background: rgba(255, 253, 248, .985);
}
.content-article h2,
.content-article h3,
.content-article h4 {
  max-width: 30ch;
  color: var(--readable-night);
  font-family: var(--font-heading);
  font-weight: 650;
}
.content-article h2 {
  margin: 0 0 .72em;
  font-size: clamp(1.75rem, 2.7vw, 2.45rem);
  line-height: 1.16;
}
.content-article h3 {
  margin: 1.9em 0 .65em;
  font-size: clamp(1.3rem, 2vw, 1.58rem);
  line-height: 1.25;
}
.content-article h4 {
  margin: 1.65em 0 .55em;
  font-size: 1.12rem;
  line-height: 1.35;
}
.content-article p,
.content-article li,
.content-article dd {
  max-width: 72ch;
  color: var(--readable-ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .16vw, 1.075rem);
  font-weight: 400;
  line-height: 1.78;
}
.content-article p { margin: 0 0 1.25em; }
.content-article ul,
.content-article ol {
  max-width: 72ch;
  margin: .75em 0 1.55em;
  padding-left: 1.45em;
}
.content-article li { margin: .48em 0; padding-left: .22em; }
.content-article li::marker { color: var(--readable-accent); font-weight: 700; }
.content-article strong { color: #17110d; font-weight: 680; }
.content-article em { color: #41362d; }
.content-article a,
.download-row,
.embed-list a {
  color: var(--readable-link);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(23, 46, 103, .38);
  text-decoration-thickness: .08em;
  text-underline-offset: .16em;
}
.content-article a:hover,
.content-article a:focus-visible { text-decoration-color: currentColor; }
.article-section {
  margin: 46px 0 0;
  padding-top: 38px;
  border-top-color: rgba(89, 75, 64, .22);
}
.article-summary {
  background: #f5ead8;
  border-color: rgba(89, 75, 64, .22);
}
.article-summary p {
  color: #44372d;
  font-family: var(--font-body);
  font-size: 1.03rem;
  font-weight: 450;
  line-height: 1.65;
}
.article-breather { display: none; }
.content-article blockquote {
  max-width: 72ch;
  margin: 1.65em 0;
  padding: 18px 22px;
  color: var(--readable-ink);
  background: #f7eddd;
  border-left-color: var(--readable-accent);
  font-family: var(--font-heading);
  font-size: 1.06rem;
  line-height: 1.7;
}

/* Tables and utility navigation remain legible in dense pages. */
.table-wrap {
  margin: 30px 0;
  border: 1px solid #cbbca8;
  border-radius: 10px;
  background: var(--readable-paper);
}
table { font-size: .96rem; line-height: 1.5; }
th,
td {
  padding: 13px 14px;
  color: var(--readable-ink);
  border-color: #d9cdbb;
}
th {
  color: var(--readable-night);
  background: #eadcc7;
  font-weight: 720;
}
tbody tr:nth-child(even) { background: #faf5ec; }
.key-value-table td:first-child {
  color: var(--readable-night);
  background: #f5ead8;
  font-weight: 680;
}
.page-toc,
.side-card {
  color: var(--readable-ink);
  background: rgba(255, 253, 248, .985);
  border-color: rgba(89, 75, 64, .22);
}
.page-toc a,
.side-card a {
  color: var(--readable-link);
  font-size: .94rem;
  font-weight: 620;
  line-height: 1.48;
}
.side-card h2 { color: var(--readable-night); font-size: 1.08rem; }

/* Supporting cards use the same foreground hierarchy as articles. */
.related-section { background: #fff9ef; }
.related-card {
  color: var(--readable-ink);
  background: var(--readable-paper);
  border-color: rgba(89, 75, 64, .2);
}
.related-card strong {
  color: var(--readable-night);
  font-family: var(--font-heading);
  font-weight: 650;
}
.related-card small { color: var(--readable-muted); font-size: .94rem; }
.related-section h2 { color: var(--readable-night); font-weight: 650; }
.intent-card,
.feature-card,
.search-result,
.resource-row,
.download-row,
.media-row {
  color: var(--readable-ink);
  background-color: var(--readable-paper);
}
.section-heading p,
.intent-card p,
.feature-card p,
.search-result small { color: var(--readable-muted); }

.button-primary,
.header-donate {
  color: #fff;
  background: #a63f00;
  border-color: #8f3500;
}
.button-primary:hover,
.header-donate:hover { background: #8f3500; }
:focus-visible {
  outline: 3px solid #f2cc72;
  outline-offset: 3px;
}

@media (max-width: 700px) {
  body { font-size: 1rem; }
  .page-hero h1 { font-size: clamp(2.2rem, 11vw, 3.15rem); line-height: 1.04; }
  .page-hero p { font-size: 1rem; line-height: 1.62; }
  .content-article p,
  .content-article li,
  .content-article dd { font-size: 1rem; line-height: 1.72; }
  .content-article h2 { font-size: clamp(1.65rem, 8vw, 2.1rem); }
  .content-article h3 { font-size: 1.3rem; }
  th,
  td { min-width: 132px; padding: 11px 12px; }
}
