:root {
  --saffron: #e85d14;
  --saffron-deep: #c2410c;
  --gold: #d4a017;
  --gold-soft: #ffe7a3;
  --ink: #2a120a;
  --ink-soft: #5a3224;
  --cream: #fff6ea;
  --paper: #f6e6d0;
  --muted: #7a5d4c;
  --line: rgba(90, 42, 22, 0.16);
  --maroon: #7a1f12;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 16px 36px rgba(80, 28, 10, 0.14);
  --font: "Outfit", "Segoe UI", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1000px 460px at 8% -10%, rgba(232,93,20,.16), transparent 52%),
    radial-gradient(820px 400px at 100% 0%, rgba(212,160,23,.2), transparent 50%),
    linear-gradient(180deg, #fff8ee 0%, #f7ead8 42%, #f3dfc4 100%);
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: max(22px, env(safe-area-inset-left, 0px) + 16px);
  padding-right: max(22px, env(safe-area-inset-right, 0px) + 16px);
  box-sizing: border-box;
}

.announce {
  background: linear-gradient(90deg, #3b1208, #7a2a0e 45%, #3b1208);
  color: #f8e7c8;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 0;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
}
.announce span {
  display: inline-block;
  padding-left: 100%;
  animation: announceRun 22s linear infinite;
}
@keyframes announceRun {
  to { transform: translateX(-100%); }
}
.announce b { color: var(--gold-soft); font-weight: 700; }

.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255, 248, 236, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,160,23,.28);
}
.header-inner {
  display: flex; align-items: center; gap: 18px;
  min-height: 76px;
  min-width: 0;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img {
  width: 42px; height: 42px; border-radius: 12px;
  box-shadow: 0 8px 18px rgba(226, 76, 18, 0.18);
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  color: var(--saffron);
}
.brand-name span {
  display: block;
  font-family: var(--font);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
  font-weight: 600;
}

.nav {
  display: flex; align-items: center; gap: 22px;
  margin-left: 12px;
}
.nav a, .nav summary {
  font-size: 0.9rem; font-weight: 600; color: var(--ink-soft);
  cursor: pointer; list-style: none;
}
.nav summary::-webkit-details-marker { display: none; }
.nav summary::after { content: " ▾"; font-size: 0.68rem; color: #9a8476; }
.nav details { position: relative; }
.nav .drop {
  position: absolute; top: 130%; left: 0; min-width: 210px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 8px; display: none; z-index: 30;
}
.nav details[open] .drop { display: grid; }
.nav .drop a { padding: 10px 12px; border-radius: 10px; font-size: 0.88rem; }
.nav .drop a:hover { background: #fff4ee; color: var(--saffron); }

.header-right {
  margin-left: auto;
  display: flex; align-items: center; gap: 10px;
  position: relative; z-index: 90; flex-shrink: 0;
}
.city-pill {
  font-size: 0.82rem; font-weight: 650; color: var(--ink-soft);
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 12px; white-space: nowrap;
}
.lang-switch {
  display: flex;
  border: 1px solid #e4c57a;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}
.lang-switch button {
  border: 0;
  background: transparent;
  padding: 8px 11px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #6a4e16;
  cursor: pointer;
}
.lang-switch button.on {
  background: var(--saffron);
  color: #fff;
}
.switch {
  display: flex !important;
  border: 1px solid #e4c57a;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}
.switch a {
  padding: 8px 10px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.switch a.active { background: var(--saffron); color: #fff; }
.switch a:not(.active) { color: #6a4e16; }
.switch a:not(.active):hover { background: #fff6e3; }

.btn-orange, .btn-outline, .btn-ghost {
  border-radius: 999px; font-weight: 700; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-orange {
  background: linear-gradient(180deg, #ee5a1c, var(--saffron-deep));
  color: #fff; border: 0; padding: 11px 18px;
  box-shadow: 0 10px 22px rgba(226, 76, 18, 0.28);
}
.btn-orange:hover { filter: brightness(1.05); }
.btn-outline {
  border: 1px solid rgba(226, 76, 18, 0.4); color: var(--saffron);
  background: #fff; padding: 9px 14px;
}
.btn-ghost {
  border: 1px solid rgba(255,255,255,.35); color: #fff;
  background: rgba(255,255,255,.08); padding: 11px 18px;
}
.menu-btn {
  display: none; width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  place-items: center; gap: 5px; padding: 10px 9px;
}
.menu-btn span {
  display: block; height: 2px; width: 18px; background: var(--ink);
  border-radius: 2px; transition: transform .25s ease, opacity .2s;
}
body.drawer-on .menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.drawer-on .menu-btn span:nth-child(2) { opacity: 0; }
body.drawer-on .menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-media, .hero-media span {
  position: absolute; inset: 0;
}
.hero-media span {
  background: center / cover no-repeat;
  animation: ken 22s ease-in-out infinite alternate;
  transform: scale(1.08);
}
.hero-media .s1 { background-image: url("/puja/assets/puja-hero.jpg"); }
.hero-media .s2 {
  background-image: url("/puja/assets/puja-hawan.jpg");
  animation-delay: -8s; opacity: 0; animation-name: ken, fadeB;
  animation-duration: 22s, 18s;
  animation-iteration-count: infinite, infinite;
  animation-direction: alternate, alternate;
}
.hero-media .s3 {
  background-image: url("/puja/assets/puja-incense.jpg");
  animation-delay: -14s; opacity: 0; animation-name: ken, fadeC;
  animation-duration: 22s, 18s;
  animation-iteration-count: infinite, infinite;
  animation-direction: alternate, alternate;
}
@keyframes ken {
  from { transform: scale(1.05) translate3d(0,0,0); }
  to { transform: scale(1.16) translate3d(-2%, -1%, 0); }
}
@keyframes fadeB { 0%, 28%, 100% { opacity: 0; } 40%, 68% { opacity: 1; } }
@keyframes fadeC { 0%, 58%, 100% { opacity: 0; } 70%, 92% { opacity: 1; } }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,6,3,.55) 0%, rgba(12,6,3,.28) 38%, rgba(12,6,3,.72) 100%),
    radial-gradient(ellipse at 20% 10%, rgba(212,160,23,.18), transparent 42%);
}
.hero-frame {
  position: absolute; inset: 18px;
  border: 1px solid rgba(243, 212, 138, 0.28);
  pointer-events: none;
}
.hero-copy {
  position: relative; z-index: 2;
  width: min(920px, calc(100% - 40px));
  text-align: center;
  padding: 90px 0 70px;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(243,212,138,.4);
  background: rgba(22,16,12,.35);
  color: var(--gold-soft);
  padding: 8px 16px; border-radius: 999px;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.08;
  font-weight: 600;
  margin: 18px 0 22px;
  text-wrap: balance;
}
.search {
  display: flex; gap: 0; max-width: 640px; margin: 0 auto;
  background: #fff; border-radius: 999px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}
.search input {
  flex: 1; border: 0; padding: 16px 22px; outline: none; color: var(--ink);
}
.search button {
  border: 0; background: var(--saffron); color: #fff;
  padding: 0 26px; font-weight: 700; cursor: pointer;
}
.popular-row { margin-top: 26px; }
.popular-row strong { display: block; font-size: 0.78rem; letter-spacing: .14em; text-transform: uppercase; opacity: .8; margin-bottom: 10px; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.chip {
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.1);
  color: #fff; padding: 8px 12px; border-radius: 999px; font-size: 0.82rem;
}
.chip:hover { background: rgba(226,76,18,.85); border-color: transparent; }

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: linear-gradient(90deg, #1a0c08, #5a1a10 50%, #1a0c08);
  color: #f8ead6;
  padding: 8px 10px;
}
.stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 6px;
  text-align: left;
  border: 0;
  border-right: 1px solid rgba(255,233,176,.12);
  animation: statIn .6s ease both;
}
.stat:nth-child(2) { animation-delay: .08s; }
.stat:nth-child(3) { animation-delay: .16s; border-right: 0; }
.stat-ico {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 10px;
  display: grid; place-items: center;
  color: #6e1c12;
  background: linear-gradient(180deg, #ffe9b0, #e6b84a);
  box-shadow: 0 6px 12px rgba(230,184,74,.28);
  animation: icoBob 2.8s ease-in-out infinite;
}
.stat-ico svg { width: 18px; height: 18px; }
.stat b {
  display: block; font-family: var(--serif); font-size: 1rem; color: var(--gold-soft);
  font-weight: 700; line-height: 1.1;
}
.stat span { font-size: 0.68rem; color: #e8d2bc; }
@keyframes statIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
@keyframes icoBob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.section { padding: 48px 0; }
.kicker {
  color: var(--saffron); font-size: 0.72rem; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 800; margin-bottom: 6px;
  overflow: visible;
}
h2 {
  font-family: var(--serif); font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 600; line-height: 1.25; margin-bottom: 8px;
  overflow: visible;
  padding-right: 8px;
}
.lead { color: var(--muted); max-width: 640px; font-size: 0.95rem; margin-bottom: 16px; }

.tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 0 0 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: 0 0 auto;
  white-space: nowrap;
  border: 1px solid #ead9c8;
  background: #fffaf4;
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 650;
  font-size: 0.82rem;
}
.tab.on {
  background: var(--saffron);
  color: #fff;
  border-color: var(--saffron);
  box-shadow: 0 8px 16px rgba(226, 76, 18, 0.22);
}

.cards, .reviews, .steps, .intl {
  display: grid; gap: 18px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: visible;
}
.card {
  background: linear-gradient(180deg, #fffdf8, #fff6ea);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 10px 22px rgba(80,28,10,.12), 0 0 0 1px rgba(212,160,23,.18);
  border: 1px solid rgba(212,160,23,.22);
  display: flex; flex-direction: column;
  width: 100%;
  min-width: 0;
  transform-style: flat;
  transition: transform .35s ease, box-shadow .35s ease;
}
.card:hover {
  transform: translateY(-6px) rotateX(6deg);
  box-shadow: 0 22px 36px rgba(80,28,10,.2);
}
.card-art {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  overflow: hidden;
  background: #3a2116;
  width: 100%;
  height: auto;
  min-height: 140px;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  cursor: pointer;
  display: block;
  line-height: 0;
}
.card-art img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: kenLive 9s ease-in-out infinite alternate;
}
.card-art .tag {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  background: var(--saffron); color: #fff;
  font-size: 0.62rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 999px; font-weight: 800;
  animation: tagPulse 2.4s ease-in-out infinite;
}
.card-art::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 3px;
  background: linear-gradient(90deg, transparent, #ffb347, #e14a0e, #ffb347, transparent);
  background-size: 200% 100%;
  animation: fireLine 2.2s linear infinite;
}
@keyframes kenLive {
  0% { transform: scale(1.08) translate3d(-2%, -1%, 0); }
  50% { transform: scale(1.22) translate3d(3%, 2%, 0); }
  100% { transform: scale(1.12) translate3d(-1%, 3%, 0); }
}
@keyframes tagPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(225,74,14,.45); }
  50% { box-shadow: 0 0 0 6px rgba(225,74,14,0); }
}
@keyframes fireLine {
  to { background-position: 200% 0; }
}
.card-actions .btn-orange { animation: bookGlow 2.8s ease-in-out infinite; }
@keyframes bookGlow {
  0%,100% { box-shadow: 0 8px 16px rgba(226,76,18,.28); }
  50% { box-shadow: 0 8px 22px rgba(226,76,18,.55); }
}
.card-body { padding: 8px 8px 10px; display: flex; flex-direction: column; flex: 0 0 auto; }
.card h3 {
  font-size: 0.82rem; line-height: 1.2; font-weight: 750;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 0;
}
.card-blurb { display: none; color: var(--muted); font-size: 0.84rem; margin: 4px 0 8px; }
.card-meta {
  color: #8a5a12; font-size: 0.72rem; font-weight: 700;
  margin: 4px 0 10px; display: flex; align-items: center; gap: 6px;
}
.card-meta .stars { color: var(--gold); letter-spacing: 0; font-size: 0.78rem; }
.card-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 6px;
}
.card-actions .btn-orange,
.card-actions .btn-view {
  width: 100%; padding: 8px 6px; font-size: 0.68rem;
  letter-spacing: 0.04em; text-transform: uppercase; border-radius: 10px;
}
.card-actions .btn-view { display: inline-flex; }

.city-stage {
  position: relative;
  z-index: 1;
  padding: 0;
  width: 100%;
}
.cities {
  display: flex;
  gap: 12px;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 6px 36px 10px;
}
.cities::-webkit-scrollbar { display: none; }
.city-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 34px;
  height: 34px;
  margin-top: -17px;
  border: 0;
  border-radius: 50%;
  background: rgba(18,8,4,.72);
  color: #ffe9b0;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,.35);
}
.city-nav.prev { left: 4px; }
.city-nav.next { right: 4px; }
.city-card {
  position: relative;
  flex: 0 0 78%;
  height: 210px;
  width: 78%;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  border: 1px solid rgba(255, 214, 140, .28);
  padding: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
  background: #2a160e;
  scroll-snap-align: center;
  box-shadow: 0 12px 24px rgba(80,28,10,.28);
  animation: cityIn .55s ease both;
  animation-delay: calc(var(--i) * 45ms);
  transition: transform .35s ease, box-shadow .35s ease, outline-color .3s ease;
}
.city-card img, .city-card .city-art {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  animation: kenLive 16s ease-in-out infinite alternate;
}
.city-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(12,6,3,.86));
}
.city-card::before {
  content: "";
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(115deg, transparent 35%, rgba(255,233,176,.38) 50%, transparent 65%);
  transform: translateX(-140%);
  pointer-events: none;
}
.city-card span {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 3;
  font-family: var(--serif); font-size: 1.35rem; font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
}
.city-card:hover img, .city-card.is-on img { transform: scale(1.12); }
.city-card:hover, .city-card.is-on {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 28px rgba(225,74,14,.32);
  z-index: 2;
  border-color: rgba(255, 196, 90, .7);
}
.city-card:hover::before, .city-card.is-on::before { animation: cityShine 1.05s ease; }
.city-card.is-on {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.city-card.is-on span::after {
  content: " ✓";
  color: var(--gold-soft);
}
.city-cta { text-align: center; margin-top: 16px; }
.city-find { padding: 10px 22px; }

.agni-stage {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 12px;
  overflow: hidden;
  border-radius: 22px;
  background: #120805;
  box-shadow:
    0 18px 40px rgba(80, 18, 4, .28),
    inset 0 0 0 1px rgba(255, 196, 90, .28),
    inset 0 -40px 70px rgba(225, 74, 14, .18);
}
.agni-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.sky-flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(210,235,255,.55), transparent 55%);
  mix-blend-mode: screen;
  animation: stormFlash 3.2s infinite;
  z-index: 2;
}
.sky-bolts {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 72%;
  z-index: 3;
}
.sky-bolts .bolt {
  fill: none;
  stroke: #f4fbff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 10px #7ec8ff) drop-shadow(0 0 18px #e14a0e);
  opacity: 0;
  animation: boltFlash 2.1s infinite;
}
.sky-bolts .b2 { animation-delay: .45s; stroke-width: 2.8; }
.sky-bolts .b3 { animation-delay: .9s; }
.sky-bolts .b4 { animation-delay: 1.25s; stroke-width: 1.8; }
.sky-bolts .b5 { animation-delay: 1.7s; }
@keyframes boltFlash {
  0%, 72%, 100% { opacity: 0; }
  74% { opacity: 1; }
  78% { opacity: .15; }
  81% { opacity: 1; }
  88% { opacity: 0; }
}
@keyframes stormFlash {
  0%, 70%, 76%, 84%, 100% { opacity: 0; }
  72%, 82% { opacity: .85; }
  74% { opacity: .2; }
}
.agni-glow {
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -10%;
  height: 78%;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 240, 180, .9) 0%, rgba(255, 140, 30, .72) 26%, rgba(225, 74, 14, .55) 52%, transparent 78%);
  filter: blur(6px);
  animation: firePulse 1.6s ease-in-out infinite;
  z-index: 1;
}
.agni-heat {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0 10px, rgba(255, 160, 40, .05) 10px 12px);
  mix-blend-mode: screen;
  animation: heatRise 3.4s linear infinite;
  opacity: .45;
}
.kund-frame {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 210, 130, .22);
  border-radius: 16px;
  box-shadow: inset 0 0 28px rgba(225, 74, 14, .12);
}
.flames, .embers { position: absolute; inset: 0; }
.flames i {
  position: absolute;
  bottom: -4%;
  display: block;
  border-radius: 50% 50% 42% 42%;
  background: radial-gradient(circle at 50% 78%, #fffce8 0 14%, #ffd56a 28%, #ff6a12 58%, transparent 74%);
  filter: blur(3px);
  mix-blend-mode: screen;
  transform-origin: 50% 100%;
  animation: flameDance .85s ease-in-out infinite alternate;
  z-index: 2;
  opacity: .95;
}
.flames i:nth-child(1) { left: 2%; width: 18%; height: 58%; }
.flames i:nth-child(2) { left: 14%; width: 24%; height: 78%; animation-duration: 1.05s; animation-delay: .12s; }
.flames i:nth-child(3) { left: 30%; width: 20%; height: 64%; animation-duration: .8s; }
.flames i:nth-child(4) { left: 44%; width: 26%; height: 86%; animation-duration: 1.1s; animation-delay: .2s; }
.flames i:nth-child(5) { left: 58%; width: 18%; height: 62%; animation-duration: .9s; }
.flames i:nth-child(6) { left: 70%; width: 22%; height: 80%; animation-duration: 1s; animation-delay: .18s; }
.flames i:nth-child(7) { left: 84%; width: 16%; height: 56%; }
.flames i:nth-child(8) { left: 8%; width: 14%; height: 48%; filter: blur(5px); opacity: .85; animation-duration: .7s; }
.flames i:nth-child(9) { left: 50%; width: 30%; height: 52%; filter: blur(7px); opacity: .7; animation-duration: 1.25s; }
.embers i {
  position: absolute;
  bottom: 6%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffe9b0;
  box-shadow: 0 0 8px #ff7a18, 0 0 14px #e14a0e;
  animation: emberRise 4.4s linear infinite;
}
.embers i:nth-child(1) { left: 8%; animation-duration: 3.8s; }
.embers i:nth-child(2) { left: 16%; animation-duration: 4.6s; animation-delay: .6s; }
.embers i:nth-child(3) { left: 24%; animation-duration: 3.4s; animation-delay: 1.1s; }
.embers i:nth-child(4) { left: 32%; animation-duration: 5s; animation-delay: .3s; }
.embers i:nth-child(5) { left: 42%; animation-duration: 4.1s; animation-delay: 1.6s; }
.embers i:nth-child(6) { left: 50%; animation-duration: 3.7s; animation-delay: .9s; }
.embers i:nth-child(7) { left: 58%; animation-duration: 4.8s; animation-delay: .2s; }
.embers i:nth-child(8) { left: 66%; animation-duration: 3.5s; animation-delay: 1.4s; }
.embers i:nth-child(9) { left: 74%; animation-duration: 4.3s; animation-delay: .7s; }
.embers i:nth-child(10) { left: 82%; animation-duration: 3.9s; animation-delay: 1.8s; }
.embers i:nth-child(11) { left: 90%; animation-duration: 4.7s; animation-delay: .4s; }
.embers i:nth-child(12) { left: 12%; animation-duration: 5.2s; animation-delay: 2.1s; }
.embers i:nth-child(13) { left: 48%; animation-duration: 3.2s; animation-delay: 2.4s; }
.embers i:nth-child(14) { left: 78%; animation-duration: 4.9s; animation-delay: 1.2s; }
@keyframes firePulse {
  0%, 100% { transform: scale(1); opacity: .85; }
  50% { transform: scale(1.08, 1.14); opacity: 1; }
}
@keyframes flameDance {
  from { transform: scaleY(1) scaleX(1) rotate(-4deg); opacity: .78; }
  to { transform: scaleY(1.18) scaleX(.88) rotate(5deg); opacity: 1; }
}
@keyframes emberRise {
  0% { transform: translate(0, 8px) scale(1); opacity: 0; }
  12% { opacity: 1; }
  100% { transform: translate(18px, -320px) scale(.25); opacity: 0; }
}
@keyframes heatRise {
  from { background-position: 0 40px; }
  to { background-position: 0 -80px; }
}
@keyframes cityIn {
  from { opacity: 0; transform: translateY(14px) scale(.96); }
  to { opacity: 1; }
}
@keyframes cityShine {
  to { transform: translateX(140%); }
}
.flow-board {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 22px;
  padding: 4px 2px 2px;
}
.flow-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.flow-dash {
  stroke: #d7c4b0;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 5 8;
  animation: dashDrift 16s linear infinite;
}
.flow-spark {
  fill: #fff6d8;
  stroke: #e24c12;
  stroke-width: 2;
  filter: drop-shadow(0 0 6px #e24c12);
}
@keyframes dashDrift { to { stroke-dashoffset: -220; } }
.flow-item {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #fffdf8, #f7ead8);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 10px 11px;
  text-align: center;
  box-shadow: 0 10px 18px rgba(80,28,10,.1), 0 1px 0 #fff inset;
  transform: rotateX(8deg);
  transform-style: preserve-3d;
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.flow-ico {
  width: 42px; height: 42px; margin: 0 auto 8px;
  border-radius: 12px; display: grid; place-items: center;
  color: #6b3514;
}
.flow-ico svg { width: 22px; height: 22px; }
.flow-item:nth-of-type(1) .flow-ico { background: linear-gradient(180deg,#fff1dc,#f0c98a); }
.flow-item:nth-of-type(2) .flow-ico { background: linear-gradient(180deg,#ffe4d4,#f5b089); }
.flow-item:nth-of-type(3) .flow-ico { background: linear-gradient(180deg,#ffd9d2,#f0a090); }
.flow-item:nth-of-type(4) .flow-ico { background: linear-gradient(180deg,#ffe9d2,#efb67a); }
.flow-item h3 { font-size: 0.88rem; margin-bottom: 2px; }
.flow-item p { color: var(--muted); font-size: 0.72rem; line-height: 1.3; }
.flow-item.is-live {
  border-color: rgba(225,74,14,.5);
  transform: translateY(-6px) rotateX(0) scale(1.03);
  box-shadow: 0 18px 30px rgba(225,74,14,.18);
}
.flow-item.is-live .flow-ico { animation: icoPulse .9s ease; }
@keyframes icoPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.globe-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, #2a120c, #6e1c12 55%, #1c0d08);
  color: #f8ead6;
  box-shadow: 0 18px 36px rgba(80,28,10,.28), inset 0 1px 0 rgba(255,233,176,.2);
  transform: rotateX(4deg);
  transform-style: preserve-3d;
}
.globe-copy h2 { color: #fff; margin: 0 0 4px; font-size: 1.45rem; }
.globe-copy .lead { color: #e8d2bc; margin: 0 0 10px; font-size: 0.85rem; }
.globe3d {
  position: relative;
  width: 86px; height: 86px;
  flex-shrink: 0;
}
.globe-core {
  position: absolute; inset: 8px;
  border-radius: 50%;
  background:
    repeating-linear-gradient(90deg, transparent 0 8px, rgba(255,255,255,.08) 8px 9px),
    repeating-linear-gradient(0deg, transparent 0 10px, rgba(255,255,255,.07) 10px 11px),
    radial-gradient(circle at 32% 30%, #8fd3ea, #1d6d86 46%, #0c3344);
  box-shadow: inset -10px -8px 16px rgba(0,0,0,.35), 0 10px 18px rgba(0,0,0,.28);
  animation: globeSpin 14s linear infinite;
}
.globe-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255,233,176,.45);
  animation: globeOrbit 9s linear infinite;
}
@keyframes globeSpin { to { transform: rotate(360deg); } }
@keyframes globeOrbit { to { transform: rotate(-360deg); } }
.intl-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.flag-chip {
  border: 1px solid rgba(255,233,176,.22);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transform: rotateX(8deg);
  transition: transform .25s ease, background .25s ease;
}
.flag-chip:hover, .flag-chip.is-on {
  background: var(--saffron);
  border-color: transparent;
  transform: translateY(-3px) rotateX(0) scale(1.04);
}

.reviews {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 8px;
  -webkit-overflow-scrolling: touch;
}
.reviews::-webkit-scrollbar { display: none; }
.rev {
  flex: 0 0 78%;
  width: 78%;
  scroll-snap-align: center;
  background: linear-gradient(180deg, #fffdf8, #f6eadc);
  border: 1px solid var(--line); border-radius: 14px; padding: 10px;
  box-shadow: 0 10px 18px rgba(80,28,10,.1);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: center;
}
.rev-photo {
  height: 64px; border-radius: 12px; overflow: hidden; background: #2a160e;
}
.rev-photo img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenLive 10s ease-in-out infinite alternate;
}
.rev-body { min-width: 0; }
.stars { color: var(--gold); letter-spacing: 1px; margin-bottom: 4px; font-size: 0.78rem; }
.rev p { color: var(--ink-soft); margin-bottom: 6px; font-size: 0.78rem; line-height: 1.35; }
.rev b { font-size: 0.75rem; }

.faq details {
  border-bottom: 1px solid var(--line); padding: 10px 4px 10px 2px;
}
.faq summary {
  cursor: pointer; font-weight: 700; font-size: 0.92rem;
  padding: 2px 8px 2px 4px;
  list-style-position: inside;
}
.faq summary::-webkit-details-marker { margin-right: 8px; }
.faq p { color: var(--muted); margin-top: 6px; max-width: 720px; font-size: 0.84rem; padding-left: 4px; }

.app-strip {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  border-radius: 20px; overflow: hidden; padding: 16px 18px;
  color: #fff; position: relative;
  background: #1a0d08 url("/puja/assets/puja-diwali.jpg") center / cover no-repeat;
}
.app-strip::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(18,8,5,.86), rgba(18,8,5,.45));
}
.app-strip > * { position: relative; }
.app-strip h2 { color: #fff; }

.footer {
  background: #100c09; color: #d8c8b8; padding: 16px 0 10px; margin-top: 0;
}
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 12px 18px; }
.footer h4 { color: #fff; margin-bottom: 4px; font-family: var(--serif); font-size: 1.05rem; }
.footer a, .footer p { display: block; color: #cbb9a8; margin: 2px 0; font-size: 0.78rem; line-height: 1.35; }
.foot-brand p { max-width: 360px; }
.copy { border-top: 1px solid rgba(255,255,255,.08); margin-top: 10px; padding-top: 8px; font-size: 0.72rem; color: #9c8b7c; }

.sticky-tab {
  position: fixed; right: 0; top: 42%; z-index: 70;
  background: var(--saffron); color: #fff;
  writing-mode: vertical-rl; transform: rotate(180deg);
  padding: 16px 10px; border-radius: 12px 0 0 12px; font-weight: 800; font-size: 0.82rem;
}

.audio-fab { display: none !important; }
.audio-fab small { display: none; }

.modal {
  position: fixed; inset: 0; background: rgba(12,8,5,.62);
  display: none; place-items: center; z-index: 140; padding: 20px;
}
.modal.open { display: grid; }
.modal-box {
  width: min(460px, 100%); background: #fff; border-radius: 24px; padding: 24px;
  box-shadow: var(--shadow);
}
.modal-box h3 { font-family: var(--serif); font-size: 1.8rem; margin-bottom: 14px; }
.modal-box label { display: block; font-size: 0.8rem; font-weight: 700; margin: 10px 0 4px; }
.modal-box input, .modal-box select {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 11px 12px;
}
.vidhi {
  position: fixed; inset: 0; z-index: 145;
  background: rgba(12, 6, 3, .62);
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
}
.vidhi.open { display: flex; }
.vidhi-panel {
  width: min(520px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  background: #fffaf3;
  border-radius: 24px 24px 16px 16px;
  box-shadow: 0 -20px 50px rgba(0,0,0,.35);
  animation: sheetUp .42s cubic-bezier(.2,.8,.2,1);
  position: relative;
}
@keyframes sheetUp {
  from { transform: translateY(40px) scale(.96); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.vidhi-x {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  border: 0; background: rgba(12,6,3,.55); color: #fff; cursor: pointer;
}
.vidhi-photo {
  height: 210px;
  background: #2a160e center / cover no-repeat;
  position: relative;
}
.vidhi-flame {
  position: absolute; left: 18px; bottom: 16px;
  width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle, #fff6d8, #e14a0e);
  box-shadow: 0 0 16px #e14a0e;
  animation: icoBob 1.6s ease-in-out infinite;
}
.vidhi-body { padding: 16px 18px 20px; }
.vidhi-body h3 {
  font-family: var(--serif); font-size: 1.7rem; color: #2a140e; margin: 4px 0 6px;
}
.vidhi-blurb { color: #7a5d4c; margin-bottom: 10px; }
.vidhi-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.vidhi-pills span {
  background: #fff1dc; color: #6e1c12;
  border-radius: 999px; padding: 5px 10px; font-size: 0.75rem; font-weight: 750;
}
.vidhi-detail { color: #3a2a22; line-height: 1.55; font-size: 0.95rem; margin-bottom: 12px; }
.vidhi-label { font-size: 0.72rem; letter-spacing: .12em; text-transform: uppercase; color: #c2410c; font-weight: 800; margin-bottom: 6px; }
.vidhi-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.vidhi-tags span {
  border: 1px solid #ead9c8; border-radius: 999px;
  padding: 5px 10px; font-size: 0.75rem; background: #fff;
}
.vidhi-cta { width: 100%; padding: 12px; }

@media (min-width: 720px) {
  .vidhi { align-items: center; }
  .vidhi-panel { border-radius: 22px; }
}

.drawer-bg {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(16, 8, 5, .55);
  opacity: 0; pointer-events: none;
  transition: opacity .28s ease;
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 121;
  width: min(420px, 100%);
  background: linear-gradient(180deg, #fffaf4, #f8ead6);
  transform: translateX(104%);
  transition: transform .34s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -18px 0 40px rgba(28, 13, 8, .28);
}
body.drawer-on .drawer-bg { opacity: 1; pointer-events: auto; }
body.drawer-on .drawer { transform: none; }
body.drawer-on { overflow: hidden; }
.drawer-top {
  background: linear-gradient(135deg, #fff1dc, #f3d7b0);
  padding: 14px 16px 16px;
}
.drawer-x {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(80,28,10,.15); background: #fff;
  cursor: pointer; font-size: 1rem; color: var(--ink);
}
.drawer-login { margin-top: 10px; }
.drawer-login p {
  font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 8px; line-height: 1.4;
}
.drawer-login-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  border: 1px dashed rgba(225,74,14,.4);
  background: #fff; color: var(--ink);
  border-radius: 12px; padding: 10px 12px; font-weight: 750; cursor: pointer;
}
.drawer-login-btn i {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--saffron); color: #fff;
  display: grid; place-items: center; font-style: normal;
}
.drawer-nav { padding: 8px 10px; overflow: auto; flex: 1; }
.drawer-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 10px; border-radius: 12px;
  font-weight: 650; color: var(--ink);
  font-size: 0.92rem;
}
.drawer-nav a:hover { background: #fff1e4; color: var(--saffron); }
.drawer-nav b { margin-left: auto; color: #c4b0a2; font-weight: 500; }
.d-ico {
  width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #ffe9b0, #f0c98a);
  color: #6e1c12; font-size: 0.85rem; flex-shrink: 0;
}
.drawer-wa {
  margin: 8px 14px 18px;
  text-align: center;
  background: #128c47; color: #fff !important;
  border-radius: 12px; padding: 12px;
  font-weight: 800; font-size: 0.88rem;
}

.kicker { color: #c2410c; }
h2 { color: #2a140e; }

@media (max-width: 980px) {
  .menu-btn { display: grid; }
  .nav { display: none !important; }
  .city-pill { display: none; }
  .cards { gap: 8px; width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card { width: 100%; border-radius: 14px; }
  .reviews, .foot-grid {
    gap: 10px;
  }
  .trust { grid-template-columns: repeat(3, 1fr); }
  .cities { gap: 12px; padding: 6px 36px 10px; }
  .city-card { height: 200px; flex-basis: 78%; width: 78%; border-radius: 18px; }
  .agni-stage { padding: 10px; border-radius: 18px; }
  .flow-board { gap: 28px 14px; }
  .globe-panel { grid-template-columns: 72px 1fr; padding: 14px; }
  .header-right .btn-orange { display: none; }
  .header-inner { gap: 8px; }
  .section { padding: 32px 0; }
}
@media (max-width: 640px) {
  .reviews { }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 8px 14px; }
  .foot-brand { grid-column: 1 / -1; }
  .trust { padding: 8px 16px; }
  .stat { padding: 6px 2px; gap: 6px; }
  .stat-ico { width: 28px; height: 28px; }
  .stat b { font-size: 0.82rem; }
  .stat span { font-size: 0.58rem; }
  .cities { gap: 12px; }
  .city-card { height: 196px; flex-basis: 82%; width: 82%; }
  .city-card span { font-size: 1.2rem; left: 12px; bottom: 12px; }
  .agni-stage { padding: 10px; border-radius: 18px; }
  .flow-item p { display: none; }
  .flow-item { padding: 10px 8px 9px; }
  .flow-ico { width: 38px; height: 38px; }
  .cards { gap: 8px; width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card { border-radius: 14px; width: 100%; }
  .card:hover { transform: none; }
  .card-art { height: auto; min-height: 140px; aspect-ratio: 4 / 3; padding: 0; }
  .card h3 { font-size: 0.72rem; min-height: 0; }
  .card-meta { font-size: 0.58rem; margin: 2px 0 6px; }
  .card-actions .btn-orange, .card-actions .btn-view { padding: 7px 4px; font-size: 0.6rem; }
  .wrap {
    width: 100%;
    padding-left: max(24px, env(safe-area-inset-left, 0px) + 20px);
    padding-right: max(24px, env(safe-area-inset-right, 0px) + 20px);
  }
  .kicker, .section > h2, .lead {
    padding-left: 2px;
    overflow: visible;
  }
  .flow-board { padding: 6px 4px 4px; }
  .reviews { padding-left: 2px; }
  .card:hover { transform: none; }
  .hero-frame { display: none; }
  .hero { min-height: 78vh; }
  .app-strip { flex-direction: column; align-items: flex-start; }
  .sticky-tab { display: none; }
  .switch { display: none !important; }
  .lang-switch button { padding: 9px 13px; font-size: 0.8rem; }
  #pujas .lead, #how .lead, #cities .lead, #intl .lead { display: none; }
  #pujas h2, #cities h2 { font-size: 1.35rem; margin-bottom: 10px; }
  .globe-panel { grid-template-columns: 58px 1fr; gap: 10px; padding: 12px; transform: none; }
  .globe3d { width: 58px; height: 58px; }
  .globe-copy h2 { font-size: 1.12rem; }
  .section { padding: 26px 0; }
}
@media (min-width: 981px) {
  .card-blurb { display: none; }
  .card-art { height: auto; min-height: 120px; aspect-ratio: 4 / 3; padding: 0; }
  .card h3 { font-size: 0.95rem; min-height: 0; }
  .card { width: 100%; }
  .cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .dock, .deck { display: none !important; }
  .city-card { flex-basis: 31%; width: 31%; height: 200px; }
  .cities { padding: 6px 40px 10px; }
  .rev { flex-basis: calc(33.33% - 8px); width: calc(33.33% - 8px); }
}

.dock {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 110;
  height: 72px;
  padding: 6px 18px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255,250,244,.92);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(80,28,10,.1);
  align-items: flex-end;
  justify-content: space-between;
  box-shadow: 0 -12px 30px rgba(80,28,10,.12);
}
.dock-btn {
  width: 86px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: none; border: 0; color: #4a2c20;
  font-weight: 750; font-size: 0.68rem; cursor: pointer;
  text-decoration: none;
}
.dock-btn svg { width: 24px; height: 24px; }
.dock-ham { display: grid; gap: 4px; width: 22px; }
.dock-ham i { display: block; height: 2px; background: #2a140e; border-radius: 2px; }
.dock-orb {
  position: relative;
  width: 64px; height: 64px;
  margin-bottom: 18px;
  border: 0; background: none; cursor: pointer;
}
.dock-orb-ring {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(225,74,14,.25);
  animation: orbPulse 2.4s ease-in-out infinite;
}
.dock-orb-core {
  position: absolute; inset: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 28%, #ff8a3d, #e14a0e 55%, #9a2a08);
  box-shadow: 0 10px 22px rgba(225,74,14,.45), inset 0 2px 0 rgba(255,255,255,.35);
  color: #fff;
  transform: translateZ(0);
}
.dock-orb-core svg { width: 22px; height: 22px; fill: #fff; }
body.deck-on .dock-orb-core {
  box-shadow: 0 0 0 5px rgba(225,74,14,.2), 0 12px 26px rgba(225,74,14,.5);
}
@keyframes orbPulse {
  0%,100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.12); opacity: 1; }
}

.deck {
  display: none;
  position: fixed; inset: 0 0 72px 0;
  z-index: 108;
  background: #f7eee2;
  flex-direction: column;
}
body.deck-on .deck { display: flex; animation: sheetUp .32s ease; }
.deck-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 10px;
  align-items: center;
  padding: 10px 12px 10px;
  background: #fffaf4;
  border-bottom: 1px solid var(--line);
}
.deck-brand {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 700;
  color: #5a2a12;
  letter-spacing: .01em;
  line-height: 1.2;
}
.deck-search { grid-column: 1 / -1; }
.deck-search input {
  width: 100%; border: 1px solid #ead9c8; border-radius: 999px;
  padding: 11px 16px 11px 40px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23a07858' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5'/%3E%3C/svg%3E") 14px 50% no-repeat;
}
.deck-x {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
}
.deck-split { display: grid; grid-template-columns: 86px minmax(0, 1fr); min-height: 0; flex: 1; overflow: hidden; width: 100%; }
.deck-rail {
  overflow: auto;
  background: linear-gradient(180deg, #fff4e4, #f8ead6);
  padding: 8px 5px;
  border-right: 1px solid var(--line);
}
.deck-rail button {
  width: 100%;
  border: 0; background: none; cursor: pointer;
  padding: 8px 3px; margin-bottom: 5px;
  border-radius: 14px;
  font-size: 0.58rem;
  font-weight: 750; color: #5a3a2c;
  display: grid; gap: 3px; justify-items: center;
}
.deck-rail button span { font-size: 1.05rem; }
.deck-rail button em {
  font-style: normal;
  line-height: 1.15;
  text-align: center;
}
.deck-rail button.on {
  background: linear-gradient(180deg, #ff8a3d, #e14a0e);
  color: #fff;
  box-shadow: 0 8px 16px rgba(225,74,14,.28);
}
.deck-grid {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 12px 12px 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: max-content;
  align-items: start;
  align-content: start;
  gap: 12px;
  width: 100%;
  min-width: 0;
  min-height: 0;
}
.deck-card {
  width: 100%;
  min-width: 0;
  height: auto;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212,160,23,.22);
  box-shadow: 0 10px 22px rgba(80,28,10,.12);
  display: block;
}
.deck-card .card-art {
  display: block;
  width: 100%;
  height: auto !important;
  min-height: 160px !important;
  aspect-ratio: 1 / 1;
  padding: 0 !important;
}
.deck-card .card-art img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: kenLive 10s ease-in-out infinite alternate;
}
.deck-card h3 {
  font-size: 0.84rem;
  line-height: 1.25;
  padding: 10px 10px 0;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.deck-card .card-meta { font-size: 0.64rem; padding: 4px 10px 8px; margin: 0; }
.deck-card .deck-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  padding: 0 10px 12px;
  margin-top: auto;
}
.deck-card .btn-orange,
.deck-card .btn-view {
  width: 100%; margin: 0;
  padding: 9px 4px; font-size: 0.64rem; text-transform: uppercase;
}

@media (max-width: 980px) {
  .dock { display: flex; }
  body { padding-bottom: 78px; }
  .audio-fab { display: none !important; }
  .card:hover, .city-card:hover { transform: none; }
}
body.deck-on .audio-fab { display: none; }

@media (prefers-reduced-motion: reduce) {
  .agni-glow, .agni-heat, .flames i, .embers i, .sky-flash, .sky-bolts .bolt, .card-art img, .city-card img, .announce span {
    animation: none !important;
  }
  .embers, .sky-flash { display: none; }
  .flames i { opacity: .7; }
  .announce span { padding-left: 0; transform: none; }
}
