:root {
  --s: #D97706;
  --sd: #B45309;
  --s-lt: rgba(217, 119, 6, .08);
  --p: #5B2C6F;
  --pl: #7B3F8F;
  --p-lt: rgba(91, 44, 111, .08);
  --g: #2E6F5E;
  --g-lt: rgba(46, 111, 94, .08);
  --gold: #D4AF37;
  --gold-lt: rgba(212, 175, 55, .14);
  --iv: #FAF7F2;
  --iv2: #FFFDF8;
  --w: #FFFFFF;
  --t: #2C241E;
  --t2: #6B6258;
  --t3: #9A8F84;
  --bd: #EFE8DD;
  --bd2: #E5DDD3;
  --fh: 'Cormorant Garamond', Georgia, serif;
  --fb: 'Manrope', 'Inter', sans-serif;
  --rs: 0 1px 8px rgba(44, 36, 30, .06), 0 2px 16px rgba(44, 36, 30, .05);
  --rm: 0 4px 20px rgba(44, 36, 30, .1);
  --rl: 0 8px 40px rgba(44, 36, 30, .13);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fb);
  background: var(--iv);
  color: var(--t);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: var(--fb);
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── FLASH MESSAGES ── */
.flash {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: opacity 0.3s;
}

.flash-success {
  background: rgba(46, 111, 94, .1);
  color: var(--g);
  border-bottom: 1px solid rgba(46, 111, 94, .2);
}

.flash-error {
  background: rgba(217, 119, 6, .1);
  color: var(--sd);
  border-bottom: 1px solid rgba(217, 119, 6, .2);
}

.flash-close {
  margin-left: auto;
  color: inherit;
  opacity: 0.6;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.flash-close:hover {
  opacity: 1;
}

/* ── BUTTONS ── */
.bp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 10px;
  background: var(--s);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
  font-family: var(--fb);
}

.bp:hover {
  background: var(--sd);
  transform: translateY(-1px);
}

.bs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 10px;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--t);
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
  cursor: pointer;
  font-family: var(--fb);
}

.bs:hover {
  background: var(--iv);
}

.bpp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 10px;
  background: var(--p);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s;
  border: none;
  cursor: pointer;
  font-family: var(--fb);
}

.bpp:hover {
  background: var(--pl);
}

/* ── LANG BAR ── */
.lb {
  background: var(--p);
  padding: 7px 0;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.lb::-webkit-scrollbar {
  display: none;
}

.lb .container {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lp {
  display: inline-block;
  padding: 3px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, .3);
  background: transparent;
  color: rgba(250, 247, 242, .6);
  font-size: 11.5px;
  font-weight: 500;
  font-family: var(--fb);
  cursor: pointer;
  transition: all .2s;
}

.lp:hover,
.lp.on {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--p);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(255, 253, 248, .97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bd);
}

.ni {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  border: 1.5px solid var(--bd2);
  background: var(--iv);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-n {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 700;
  color: var(--t);
}

.logo-t {
  font-size: 9.5px;
  color: var(--t3);
  letter-spacing: .06em;
  margin-top: -2px;
}

.nl {
  display: flex;
  align-items: center;
  gap: 1px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nl a {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--t2);
  transition: all .2s;
  position: relative;
}

.nl a:hover {
  color: var(--s);
  background: var(--s-lt);
}

.nl a.on::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.nl a.on {
  color: var(--s);
}

.na {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--bd2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  color: var(--t2);
}

.nav-icon-btn:hover {
  border-color: var(--s);
  color: var(--s);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(150deg, #FFFDF8 0%, #FEF9EE 55%, #FAF3E0 100%);
  padding: 52px 0 0;
  position: relative;
  overflow: hidden;
}

.hero-mandala {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  opacity: .06;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  padding-bottom: 52px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--s-lt);
  border: 1px solid rgba(217, 119, 6, .22);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--s);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--fh);
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.03;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.hero-title .w1 { color: var(--s); }
.hero-title .w2 { color: var(--g); }
.hero-title .w3 { color: var(--p); }
.hero-title .w4 { color: var(--t); }

.hero-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 20px;
}

.hero-divider-line {
  height: 1px;
  width: 28px;
  background: var(--gold);
}

.hero-desc {
  font-size: 16px;
  color: var(--t2);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hcard {
  background: var(--w);
  border-radius: 16px;
  border: 1px solid var(--bd);
  box-shadow: var(--rs);
  overflow: hidden;
}

.hcard-ev-img {
  height: 110px;
  background: linear-gradient(135deg, rgba(91, 44, 111, .12), rgba(217, 119, 6, .1));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hcard-ev-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--p);
  color: #fff;
  border-radius: 8px;
  padding: 5px 10px;
  text-align: center;
}

.hcard-ev-badge-d {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.hcard-ev-badge-m {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hcard-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.tag-s  { background: var(--s-lt);    color: var(--s);  }
.tag-p  { background: var(--p-lt);    color: var(--p);  }
.tag-g  { background: var(--g-lt);    color: var(--g);  }
.tag-gold { background: var(--gold-lt); color: #7A5C10; }

.hcard-body {
  padding: 14px 16px 16px;
}

.hcard-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--t);
  margin-bottom: 6px;
  line-height: 1.35;
}

.hcard-meta {
  font-size: 12px;
  color: var(--t2);
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 12px;
}

.hcard-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hcard-artist {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
}

.hcard-artist-av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--bd2);
}

.hcard-artist-av-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--s-lt), var(--p-lt));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hcard-artist-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--t);
  margin-bottom: 2px;
}

.hcard-artist-role {
  font-size: 12px;
  color: var(--t3);
  margin-bottom: 8px;
}

.hcard-artist-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.hcard-vol {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
}

.hcard-vol-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--g-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hcard-vol-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--t);
  margin-bottom: 2px;
}

.hcard-vol-sub {
  font-size: 11.5px;
  color: var(--t3);
}

/* ── SEARCH BAR ── */
.search-section {
  background: var(--w);
  padding: 28px 0;
  border-bottom: 1px solid var(--bd);
}

.search-wrap {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.search-bar {
  display: flex;
  align-items: center;
  background: var(--iv);
  border: 1.5px solid var(--bd2);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}

.search-bar:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .12);
}

.search-icon {
  padding: 0 16px;
  color: var(--t3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.search-input {
  flex: 1;
  padding: 16px 0;
  border: none;
  background: transparent;
  font-size: 15px;
  font-family: var(--fb);
  color: var(--t);
  outline: none;
}

.search-input::placeholder {
  color: var(--t3);
}

.search-filters {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-left: 1px solid var(--bd);
}

.search-filter-pill {
  padding: 6px 14px;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--t2);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--fb);
}

.search-filter-pill:hover,
.search-filter-pill.on {
  background: var(--w);
  border-color: var(--bd2);
  color: var(--s);
}

.search-btn {
  margin: 6px;
  padding: 10px 20px;
  border-radius: 9px;
  background: var(--s);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
  font-family: var(--fb);
}

.search-btn:hover {
  background: var(--sd);
}

/* ── DISCOVER SECTION ── */
.discover-section {
  padding: 64px 0;
}

.sec-ey {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--s);
  display: block;
  margin-bottom: 8px;
}

.sec-title {
  font-family: var(--fh);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--t);
  line-height: 1.1;
  margin-bottom: 8px;
}

.sec-title em {
  font-style: italic;
  color: var(--s);
}

.sec-desc {
  font-size: 15px;
  color: var(--t2);
  max-width: 520px;
  line-height: 1.8;
}

.sec-head {
  margin-bottom: 36px;
}

.gold-rule {
  width: 36px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  margin: 14px 0 36px;
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.disc-card {
  border-radius: 18px;
  border: 1px solid var(--bd);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .25s, transform .25s;
  background: var(--w);
}

.disc-card:hover {
  box-shadow: var(--rm);
  transform: translateY(-4px);
}

.disc-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.disc-card-img svg {
  width: 64px;
  height: 64px;
  opacity: .7;
}

.disc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 36, 30, .4) 0%, transparent 60%);
}

.disc-card-img-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .01em;
}

.disc-card-body {
  padding: 18px 20px 20px;
}

.disc-card-title {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 700;
  color: var(--t);
  margin-bottom: 6px;
}

.disc-card-desc {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.65;
  margin-bottom: 14px;
}

.disc-card-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--s);
}

/* ── PLACEHOLDER IMAGES ── */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ph svg {
  position: relative;
  z-index: 1;
}

.ph-events    { background: linear-gradient(135deg, #F5EFE6, #EDE0D0); }
.ph-bhajans   { background: linear-gradient(135deg, #EEE8F5, #DDD0EC); }
.ph-artists   { background: linear-gradient(135deg, #E6F0EE, #CDE0DA); }
.ph-gallery   { background: linear-gradient(135deg, #F5EDD6, #EDD8A8); }
.ph-volunteer { background: linear-gradient(135deg, #E8F0E8, #C8DCC8); }
.ph-learn     { background: linear-gradient(135deg, #F0EBE3, #E0D3C6); }
.ph-satsang1  { background: linear-gradient(135deg, #EDE8F5, #D8CCE8); }
.ph-satsang2  { background: linear-gradient(135deg, #F5EEE6, #E8D8C4); }
.ph-satsang3  { background: linear-gradient(135deg, #E6EFF0, #C8DCE0); }
.ph-satsang4  { background: linear-gradient(135deg, #F0F0E6, #E0D8C0); }
.ph-temple    { background: linear-gradient(135deg, #EEE6E0, #DDD0C4); }
.ph-music     { background: linear-gradient(135deg, #E8E0F0, #CCCCE8); }

/* ── TWO-COL MAIN LAYOUT ── */
.main-two {
  display: grid;
  grid-template-columns: 1fr 336px;
  gap: 28px;
}

.main-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ── SECTION HEADER ── */
.sec-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--s);
}

.view-all svg {
  width: 13px;
  height: 13px;
}

/* ── EVENT CARDS ── */
.ev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ev-card {
  background: var(--w);
  border-radius: 14px;
  border: 1px solid var(--bd);
  box-shadow: var(--rs);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}

.ev-card:hover {
  box-shadow: var(--rm);
  transform: translateY(-3px);
}

.ev-top-bar {
  height: 4px;
}

.ev-img {
  height: 112px;
  position: relative;
  overflow: hidden;
}

.ev-date-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 8px;
  padding: 5px 10px;
  text-align: center;
  color: #fff;
}

.ev-date-d {
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.ev-date-m {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ev-body {
  padding: 13px 14px;
}

.ev-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--t);
  line-height: 1.35;
  margin-bottom: 7px;
}

.ev-meta {
  font-size: 11.5px;
  color: var(--t2);
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}

.ev-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ev-foot {
  border-top: 1px solid var(--bd);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ev-langs {
  display: flex;
  gap: 3px;
}

.ev-lang {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--iv);
  color: var(--t2);
  font-weight: 500;
}

.btn-ev {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 7px;
  border: 1.5px solid var(--bd2);
  color: var(--t2);
  transition: all .2s;
  background: transparent;
  cursor: pointer;
  font-family: var(--fb);
}

.btn-ev:hover {
  border-color: var(--s);
  color: var(--s);
}

/* ── CALENDAR ── */
.cal-widget {
  background: var(--w);
  border-radius: 16px;
  border: 1px solid var(--bd);
  box-shadow: var(--rs);
  overflow: hidden;
}

.cal-head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cal-month {
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 700;
  color: var(--t);
}

.cal-nav {
  display: flex;
  gap: 4px;
}

.cal-nav-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--bd2);
  background: transparent;
  color: var(--t2);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.cal-nav-btn:hover {
  border-color: var(--s);
  color: var(--s);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 12px;
}

.cal-dow {
  text-align: center;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--t3);
  padding: 4px;
  letter-spacing: .04em;
}

.cal-day {
  text-align: center;
  padding: 5px 4px;
  border-radius: 7px;
  font-size: 12.5px;
  color: var(--t2);
  cursor: pointer;
  transition: all .2s;
  position: relative;
}

.cal-day:hover {
  background: var(--iv);
}

.cal-day.has-event {
  color: var(--t);
  font-weight: 700;
}

.cal-day.has-event::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--s);
}

.cal-day.today {
  background: var(--s);
  color: #fff;
  font-weight: 700;
}

.cal-day.today::after {
  display: none;
}

.cal-day.other-month {
  color: var(--bd2);
}

.cal-upcoming {
  border-top: 1px solid var(--bd);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cal-ev-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 9px;
  transition: background .2s;
  cursor: pointer;
}

.cal-ev-item:hover {
  background: var(--iv);
}

.cal-ev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cal-ev-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--t);
  flex: 1;
}

.cal-ev-date {
  font-size: 11px;
  color: var(--t3);
}

/* ── BHAJANS ── */
.bh-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bh-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all .2s;
  cursor: pointer;
}

.bh-row:hover {
  background: var(--w);
  border-color: var(--bd);
  box-shadow: var(--rs);
}

.bh-num {
  font-size: 12px;
  color: var(--t3);
  width: 18px;
  text-align: right;
  flex-shrink: 0;
}

.bh-art-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.bh-art-placeholder .ph {
  width: 100%;
  height: 100%;
}

.bh-info {
  flex: 1;
  min-width: 0;
}

.bh-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--t);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bh-meta {
  font-size: 11px;
  color: var(--t3);
}

.bh-dur {
  font-size: 12px;
  color: var(--t3);
  flex-shrink: 0;
}

.bh-play-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--bd2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t2);
  transition: all .2s;
  flex-shrink: 0;
  cursor: pointer;
}

.bh-play-btn:hover {
  background: var(--s);
  border-color: var(--s);
  color: #fff;
}

.bh-play-btn svg {
  width: 12px;
  height: 12px;
  margin-left: 2px;
}

/* ── FESTIVALS ── */
.fest-scroll {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.fest-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.fest-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1.5px solid var(--bd2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  position: relative;
}

.fest-item:hover .fest-ring {
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(212, 175, 55, .2);
  transform: translateY(-2px);
}

.fest-ring svg {
  width: 30px;
  height: 30px;
}

.fest-name {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--t);
  text-align: center;
  line-height: 1.3;
}

.fest-date {
  font-size: 10.5px;
  color: var(--t3);
  text-align: center;
}

/* ── SIDEBAR WIDGETS ── */
.sw {
  background: var(--w);
  border-radius: 15px;
  border: 1px solid var(--bd);
  box-shadow: var(--rs);
  overflow: hidden;
}

.sw-hd {
  padding: 15px 17px 11px;
  border-bottom: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sw-ht {
  font-size: 14px;
  font-weight: 700;
  color: var(--t);
  display: flex;
  align-items: center;
  gap: 7px;
}

.sw-ht svg {
  width: 15px;
  height: 15px;
  color: var(--s);
}

.sw-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--s);
}

.sw-bd {
  padding: 15px 17px;
}

.week-ev {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.week-ev-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bd);
}

.week-ev-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.week-date-badge {
  border-radius: 8px;
  padding: 5px 9px;
  text-align: center;
  flex-shrink: 0;
  color: #fff;
}

.week-date-d {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.week-date-m {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.week-ev-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--t);
  margin-bottom: 2px;
  line-height: 1.3;
}

.week-ev-meta {
  font-size: 11px;
  color: var(--t3);
}

.feat-art-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feat-art-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--bd2);
  flex-shrink: 0;
}

.feat-art-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--t);
  margin-bottom: 2px;
}

.feat-art-role {
  font-size: 12px;
  color: var(--t3);
  margin-bottom: 8px;
}

.feat-art-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.feat-vol {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feat-vol-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--bd2);
}

.feat-vol-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--t);
  margin-bottom: 2px;
}

.feat-vol-role {
  font-size: 11.5px;
  color: var(--t3);
  margin-bottom: 6px;
}

.feat-vol-quote {
  font-size: 13px;
  font-style: italic;
  color: var(--t2);
  line-height: 1.6;
}

.know-row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s;
}

.know-row:hover {
  background: var(--iv);
}

.know-row-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.know-row-icon svg {
  width: 18px;
  height: 18px;
}

.know-row-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--t);
  line-height: 1.3;
  margin-bottom: 2px;
}

.know-row-meta {
  font-size: 11px;
  color: var(--t3);
}

/* ── NEWSLETTER WIDGET ── */
.nl-w {
  background: linear-gradient(135deg, var(--p), var(--pl));
  border-radius: 15px;
  padding: 22px;
}

.nl-wt {
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.nl-ws {
  font-size: 12.5px;
  color: rgba(250, 247, 242, .6);
  margin-bottom: 14px;
  line-height: 1.6;
}

.nl-input-row {
  display: flex;
  gap: 6px;
}

.nl-inp {
  flex: 1;
  padding: 9px 13px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 13px;
  font-family: var(--fb);
  outline: none;
}

.nl-inp::placeholder {
  color: rgba(255, 255, 255, .45);
}

.nl-sbtn {
  padding: 9px 14px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--p);
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--fb);
}

/* ── GALLERY ── */
.gallery-section {
  background: var(--iv2);
  padding: 72px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 180px;
  gap: 14px;
}

.gal-item {
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gal-item:hover .gal-overlay {
  opacity: 1;
}

.gal-item-span2 {
  grid-column: span 2;
}

.gal-item-row2 {
  grid-row: span 2;
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 36, 30, .6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .25s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gal-overlay-text {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.gal-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gal-ph svg {
  width: 48px;
  height: 48px;
  opacity: .35;
}

/* ── COMMUNITY ── */
.community-section {
  padding: 72px 0;
  background: var(--w);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.comm-card {
  border-radius: 16px;
  border: 1px solid var(--bd);
  overflow: hidden;
  background: var(--iv);
  transition: box-shadow .2s;
}

.comm-card:hover {
  box-shadow: var(--rm);
}

.comm-card-top {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.comm-card-top .ph {
  width: 100%;
  height: 100%;
}

.comm-card-top svg {
  width: 60px;
  height: 60px;
  opacity: .4;
}

.comm-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.comm-card-body {
  padding: 18px 20px 20px;
}

.comm-type {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--s);
  margin-bottom: 7px;
}

.comm-title {
  font-family: var(--fh);
  font-size: 19px;
  font-weight: 700;
  color: var(--t);
  line-height: 1.3;
  margin-bottom: 7px;
}

.comm-desc {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.65;
  margin-bottom: 14px;
}

.comm-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comm-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.comm-author {
  font-size: 12px;
  font-weight: 600;
  color: var(--t);
}

.comm-loc {
  font-size: 11px;
  color: var(--t3);
}

/* ── QUOTE BAND ── */
.quote-band {
  background: var(--iv2);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  padding: 48px 0;
  text-align: center;
}

.quote-text {
  font-family: var(--fh);
  font-size: clamp(18px, 3vw, 28px);
  font-style: italic;
  color: var(--t);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

.quote-mark {
  font-family: var(--fh);
  font-size: 56px;
  line-height: .5;
  color: #EDD87A;
  display: block;
  margin-bottom: 10px;
}

.quote-rule {
  width: 36px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  margin: 18px auto 0;
}

/* ── VOICES / TESTIMONIALS ── */
.voices-section {
  padding: 72px 0;
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vc {
  background: var(--iv2);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 24px;
}

.vc-q {
  font-family: var(--fh);
  font-size: 46px;
  line-height: .6;
  color: #EDD87A;
  margin-bottom: 14px;
}

.vc-text {
  font-size: 14px;
  color: var(--t);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
}

.vc-auth {
  display: flex;
  align-items: center;
  gap: 9px;
}

.vc-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid var(--bd2);
}

.vc-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--t);
}

.vc-loc {
  font-size: 11px;
  color: var(--t3);
}

/* ── JOIN US ── */
.join-section {
  background: var(--iv2);
  padding: 72px 0;
}

.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.jc {
  border-radius: 18px;
  padding: 40px;
  border: 1px solid var(--bd);
  box-shadow: var(--rs);
}

.jc-vol { background: var(--p); }
.jc-art { background: var(--w); }

.jc-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.jc-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.jc-title {
  font-family: var(--fh);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.jc-vol .jc-title { color: var(--iv); }
.jc-art .jc-title { color: var(--t); }

.jc-desc {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.jc-vol .jc-desc { color: rgba(250, 247, 242, .65); }
.jc-art .jc-desc { color: var(--t2); }

.jc-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.jc-perk {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
}

.jc-vol .jc-perk { color: rgba(250, 247, 242, .7); }
.jc-art .jc-perk { color: var(--t2); }

.jc-ck {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jc-ck svg {
  width: 9px;
  height: 9px;
}

.ck-gold { background: var(--gold); }
.ck-gold svg { color: var(--p); }
.ck-s { background: var(--s-lt); }
.ck-s svg { color: var(--s); }

.jc-note {
  font-size: 11.5px;
  font-style: italic;
  opacity: .5;
  margin-bottom: 18px;
}

.jc-vol .jc-note { color: var(--iv); }
.jc-art .jc-note { color: var(--t); }

.btn-full {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--fb);
  cursor: pointer;
  transition: all .2s;
}

.btn-full-gold { background: var(--gold); color: var(--p); }
.btn-full-gold:hover { background: #C9A430; }
.btn-full-s { background: var(--s); color: #fff; }
.btn-full-s:hover { background: var(--sd); }

/* ── FOOTER ── */
footer {
  background: var(--p);
  padding: 60px 0 28px;
}

.fg {
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 44px;
}

.fb-brand-name {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 700;
  color: var(--iv);
  margin-bottom: 4px;
}

.fb-brand-tag {
  font-size: 11px;
  letter-spacing: .07em;
  color: var(--gold);
  margin-bottom: 14px;
}

.fb-desc {
  font-size: 13px;
  color: rgba(250, 247, 242, .42);
  line-height: 1.75;
  max-width: 220px;
  margin-bottom: 16px;
}

.fb-social {
  display: flex;
  gap: 7px;
}

.fb-sb {
  width: 33px;
  height: 33px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, .22);
  background: transparent;
  color: rgba(250, 247, 242, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}

.fb-sb svg {
  width: 14px;
  height: 14px;
}

.fb-sb:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.fc-hd {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.fc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fc-list a {
  font-size: 13px;
  color: rgba(250, 247, 242, .45);
  transition: color .2s;
}

.fc-list a:hover {
  color: var(--gold);
}

.f-bot {
  border-top: 1px solid rgba(212, 175, 55, .12);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.f-copy {
  font-size: 12px;
  color: rgba(250, 247, 242, .28);
}

.f-dharma {
  font-family: var(--fh);
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
}

/* ── MODAL ── */
.mb {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44, 36, 30, .55);
  z-index: 900;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.mb.on {
  display: flex;
}

.mbox {
  background: var(--w);
  border-radius: 18px;
  width: 100%;
  max-width: 540px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
}

.m-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--bd);
  background: transparent;
  color: var(--t2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
}

.m-close:hover {
  background: var(--iv);
}

.m-close svg {
  width: 13px;
  height: 13px;
}

.m-title {
  font-family: var(--fh);
  font-size: 26px;
  font-weight: 700;
  color: var(--t);
  margin-bottom: 4px;
}

.m-sub {
  font-size: 13px;
  color: var(--t2);
  margin-bottom: 18px;
}

.m-notice {
  background: var(--s-lt);
  border-left: 3px solid var(--gold);
  border-radius: 0 7px 7px 0;
  padding: 9px 13px;
  font-size: 12px;
  font-style: italic;
  color: var(--t2);
  margin-bottom: 18px;
}

.fr {
  margin-bottom: 14px;
}

.fr2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fl {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--t);
  margin-bottom: 4px;
}

.fc {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--bd2);
  background: var(--iv);
  color: var(--t);
  font-size: 13.5px;
  font-family: var(--fb);
  outline: none;
  transition: border-color .2s;
}

.fc:focus {
  border-color: var(--gold);
  background: var(--w);
}

textarea.fc {
  resize: vertical;
  min-height: 86px;
}

.fsub {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  border: none;
  background: var(--s);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--fb);
  cursor: pointer;
  transition: background .2s;
  margin-top: 2px;
}

.fsub:hover {
  background: var(--sd);
}

.sv {
  display: none;
  text-align: center;
  padding: 28px 0;
}

.sv-icon {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.sv-icon svg {
  width: 52px;
  height: 52px;
  color: var(--gold);
}

.sv-t {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 700;
  color: var(--t);
  margin-bottom: 6px;
}

.sv-d {
  font-size: 14px;
  color: var(--t2);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .main-two       { grid-template-columns: 1fr 300px; }
  .fg             { grid-template-columns: 1fr 1fr 1fr; }
  .discover-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .main-two         { grid-template-columns: 1fr; }
  .main-right       { display: none; }
  .hero-grid        { grid-template-columns: 1fr; }
  .hero-cards       { display: none; }
  .gallery-grid     { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-item-span2,
  .gal-item-row2    { grid-column: span 1; grid-row: span 1; }
  .voices-grid,
  .community-grid   { grid-template-columns: 1fr; }
  .join-grid        { grid-template-columns: 1fr; }
  .nl               { display: none; }
  .fg               { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .container        { padding: 0 16px; }
  .discover-grid,
  .ev-grid          { grid-template-columns: 1fr; }
  .gallery-grid     { grid-template-columns: 1fr; }
  section,
  .join-section,
  .gallery-section,
  .community-section,
  .voices-section   { padding: 48px 0; }
  .fg               { grid-template-columns: 1fr; }
  .fr2              { grid-template-columns: 1fr; }
  .search-filters   { display: none; }
}

.logo img {
    height: 56px;
    width: auto;
    display: block;
}

.adm-logo{
    padding:20px 20px;
    border-bottom:1px solid rgba(255,255,255,.1);
    display:flex;
    align-items:center;
    gap:12px;
}
.adm-logo img{
    height:48px;
    width:48px;
    object-fit:contain;
    border-radius:8px;
    flex-shrink:0;
}
.adm-logo-text{
    font-family:'Cormorant Garamond',serif;
    font-size:16px;
    font-weight:700;
    color:#fff;
    line-height:1.2;
}
.adm-logo-sub{
    font-size:10px;
    color:rgba(255,255,255,.45);
    letter-spacing:.06em;
}

.lang-pill {
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,.15);
    background: transparent;
    color: rgba(255,255,255,.65);
    cursor: pointer;
    transition: all .2s;
    font-family: var(--fb);
    white-space: nowrap;
}

.lang-pill:hover {
    background: rgba(255,255,255,.12);
    color: #fff;
    border-color: rgba(255,255,255,.3);
}

.lang-pill.active {
    background: var(--gold);
    color: var(--p);
    border-color: var(--gold);
    font-weight: 700;
}