﻿:root{
  --bg:#101018;
  --panel:#191922;
  --panel-2:#222230;
  --text:#f4efe7;
  --muted:#b9b0a7;
  --line:rgba(255,255,255,.12);
  --gold:#e8bd66;
  --red:#c84a31;
  --pink:#d96b8a;
  --green:#3f9f72;
  --blue:#4e587a;
}
*{box-sizing:border-box}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(232,189,102,.12), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(78,88,122,.18), transparent 34%),
    var(--bg);
  font-family:"Microsoft YaHei","PingFang SC",system-ui,sans-serif;
}
body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    linear-gradient(rgba(232,189,102,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,189,102,.025) 1px, transparent 1px);
  background-size:72px 72px;
  mask-image:radial-gradient(circle at 50% 20%, #000, transparent 76%);
}
a{color:inherit;text-decoration:none}
.topbar{
  position:sticky;top:0;z-index:20;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  padding:14px clamp(18px,4vw,56px);
  background:rgba(16,16,24,.82);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(16px);
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:.08em;
  color:var(--gold);
}
.brand-logo{
  width:34px;
  height:34px;
  display:block;
  filter:drop-shadow(0 0 12px rgba(232,189,102,.28));
}
.brand-mark{
  width:22px;
  height:22px;
  border:1px solid rgba(232,189,102,.78);
  border-radius:50%;
  position:relative;
  box-shadow:0 0 18px rgba(232,189,102,.18);
}
.brand-mark:before{
  content:"";
  position:absolute;
  left:50%;
  top:4px;
  width:8px;
  height:12px;
  transform:translateX(-50%);
  border-radius:50% 50% 46% 46%;
  background:radial-gradient(circle at 50% 72%, #fff8c4, #e8bd66 48%, transparent 76%);
}
.brand-mark:after{
  content:"";
  position:absolute;
  left:5px;
  right:5px;
  bottom:4px;
  height:2px;
  border-radius:999px;
  background:rgba(232,189,102,.72);
}
.nav{display:flex;align-items:center;gap:14px;flex-wrap:wrap;font-size:14px;color:var(--muted)}
.nav a:hover{color:var(--text)}
.nav-cta,.button{
  border:1px solid rgba(232,189,102,.45);
  border-radius:999px;
  padding:10px 16px;
  background:rgba(232,189,102,.12);
  color:var(--text);
  cursor:pointer;
}
.button{display:inline-flex;align-items:center;justify-content:center;font-weight:700}
.button.primary{background:linear-gradient(135deg,#f0c979,#9f6a2c);color:#16110b;border:0}
.button.secondary{background:rgba(255,255,255,.06)}
.footer{
  display:flex;justify-content:space-between;gap:20px;
  padding:26px clamp(18px,4vw,56px);
  color:var(--muted);border-top:1px solid var(--line);
}
.notice-stack{max-width:1080px;margin:18px auto 0;padding:0 18px}
.notice{padding:12px 14px;border:1px solid var(--line);background:var(--panel);border-radius:8px}
.home-hero{
  min-height:calc(100vh - 118px);
  display:grid;grid-template-columns:minmax(520px,1.08fr) minmax(390px,.92fr);
  align-items:center;gap:38px;
  padding:34px clamp(18px,4vw,56px) 44px;
}
.shrine-hero{
  background:
    linear-gradient(90deg, rgba(8,7,8,.88), rgba(16,16,24,.82)),
    radial-gradient(circle at 34% 38%, rgba(232,189,102,.16), transparent 40%);
}
.main-shrine{
  position:relative;
  min-height:auto;
  aspect-ratio:16/9;
  width:min(100%,920px);
  display:flex;
  align-items:center;
  justify-content:center;
  border:0;
  background:
    linear-gradient(180deg, rgba(82,34,22,.18), rgba(0,0,0,.18)),
    repeating-linear-gradient(90deg, rgba(232,189,102,.06) 0 1px, transparent 1px 92px);
  overflow:hidden;
  transform:translate(var(--ritual-x,0), var(--ritual-y,0));
  transition:transform .35s ease;
}
.home-shrine-art{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.9;
  filter:saturate(.9) contrast(1.08);
  z-index:0;
}
.main-shrine:after{
  content:"";
  position:absolute;
  inset:0;
  width:auto;
  top:0;
  bottom:0;
  background:
    radial-gradient(circle at 50% 48%, transparent 20%, rgba(7,7,10,.14) 58%, rgba(7,7,10,.74)),
    linear-gradient(180deg, rgba(7,7,10,.08), rgba(7,7,10,.48));
  pointer-events:none;
  z-index:1;
}
.main-shrine:before{
  content:"";
  position:absolute;
  inset:0;
  width:auto;
  top:0;
  bottom:0;
  background:linear-gradient(90deg, rgba(7,7,10,.62), transparent 26%, transparent 74%, rgba(7,7,10,.66));
  pointer-events:none;
  z-index:1;
}
.festival-hero .main-shrine{
  border:1px solid rgba(232,189,102,.16);
  box-shadow:
    0 24px 80px rgba(0,0,0,.34),
    0 0 48px color-mix(in srgb, var(--accent,var(--gold)) 18%, transparent);
}
.festival-hero .home-shrine-art{
  opacity:.96;
  filter:saturate(1.05) contrast(1.08);
}
.festival-hero-ornaments{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:2;
}
.festival-hero-ornaments span{
  position:absolute;
  display:block;
  opacity:.86;
}
.festival-hero-spring,.festival-hero-newyear,.festival-hero-lantern{
  background:
    radial-gradient(circle at 28% 20%, rgba(232,189,102,.18), transparent 34%),
    linear-gradient(90deg, rgba(44,8,8,.92), rgba(16,16,24,.84));
}
.festival-hero-spring .festival-hero-ornaments span,
.festival-hero-newyear .festival-hero-ornaments span,
.festival-hero-lantern .festival-hero-ornaments span{
  width:34px;height:48px;border-radius:16px;
  background:linear-gradient(#f3c56b,#b72b27 38%,#7d1918);
  box-shadow:0 0 18px rgba(232,78,54,.42);
}
.festival-hero-spring .festival-hero-ornaments span:nth-child(1),
.festival-hero-newyear .festival-hero-ornaments span:nth-child(1),
.festival-hero-lantern .festival-hero-ornaments span:nth-child(1){left:9%;top:12%}
.festival-hero-spring .festival-hero-ornaments span:nth-child(2),
.festival-hero-newyear .festival-hero-ornaments span:nth-child(2),
.festival-hero-lantern .festival-hero-ornaments span:nth-child(2){right:14%;top:9%;transform:scale(.8)}
.festival-hero-spring .festival-hero-ornaments span:nth-child(3),
.festival-hero-newyear .festival-hero-ornaments span:nth-child(3),
.festival-hero-lantern .festival-hero-ornaments span:nth-child(3){right:8%;bottom:18%;transform:scale(.65)}
.festival-hero-duanwu{
  background:
    radial-gradient(circle at 28% 20%, rgba(108,185,122,.18), transparent 34%),
    linear-gradient(90deg, rgba(6,35,25,.92), rgba(16,16,24,.84));
}
.festival-hero-duanwu .festival-hero-ornaments span{
  width:92px;height:18px;border-radius:999px;
  background:linear-gradient(90deg, transparent, rgba(107,183,112,.9), rgba(232,189,102,.55), transparent);
  transform:rotate(-28deg);
}
.festival-hero-duanwu .festival-hero-ornaments span:nth-child(1){left:8%;top:18%}
.festival-hero-duanwu .festival-hero-ornaments span:nth-child(2){right:10%;top:24%;transform:rotate(24deg)}
.festival-hero-duanwu .festival-hero-ornaments span:nth-child(3){left:18%;bottom:14%;transform:rotate(12deg)}
.festival-hero-qixi{
  background:
    radial-gradient(circle at 26% 18%, rgba(217,107,138,.2), transparent 34%),
    linear-gradient(90deg, rgba(29,11,35,.94), rgba(16,16,24,.84));
}
.festival-hero-qixi .festival-hero-ornaments span{
  width:120px;height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,196,213,.88), transparent);
  box-shadow:0 0 16px rgba(255,196,213,.58);
}
.festival-hero-qixi .festival-hero-ornaments span:nth-child(1){left:16%;top:24%;transform:rotate(-18deg)}
.festival-hero-qixi .festival-hero-ornaments span:nth-child(2){right:13%;top:19%;transform:rotate(18deg)}
.festival-hero-qixi .festival-hero-ornaments span:nth-child(3){left:38%;bottom:18%;width:180px;transform:rotate(-8deg)}
.festival-hero-zhongyuan,.festival-hero-qingming{
  background:
    radial-gradient(circle at 28% 18%, rgba(105,128,176,.18), transparent 36%),
    linear-gradient(90deg, rgba(7,13,24,.95), rgba(16,16,24,.84));
}
.festival-hero-zhongyuan .festival-hero-ornaments span,
.festival-hero-qingming .festival-hero-ornaments span{
  width:34px;height:16px;border-radius:50%;
  background:radial-gradient(circle, #ffe9a8, rgba(232,189,102,.75) 38%, rgba(92,106,150,.32) 70%, transparent);
  box-shadow:0 0 22px rgba(232,189,102,.42);
}
.festival-hero-zhongyuan .festival-hero-ornaments span:nth-child(1),
.festival-hero-qingming .festival-hero-ornaments span:nth-child(1){left:12%;bottom:18%}
.festival-hero-zhongyuan .festival-hero-ornaments span:nth-child(2),
.festival-hero-qingming .festival-hero-ornaments span:nth-child(2){right:18%;bottom:24%;transform:scale(.8)}
.festival-hero-zhongyuan .festival-hero-ornaments span:nth-child(3),
.festival-hero-qingming .festival-hero-ornaments span:nth-child(3){right:8%;top:18%;transform:scale(.55)}
.festival-hero-moon,.festival-hero-winter,.festival-hero-chongyang{
  background:
    radial-gradient(circle at 25% 18%, rgba(232,189,102,.15), transparent 34%),
    linear-gradient(90deg, rgba(18,22,33,.94), rgba(16,16,24,.84));
}
.festival-hero-moon .festival-hero-ornaments span:first-child,
.festival-hero-winter .festival-hero-ornaments span:first-child,
.festival-hero-chongyang .festival-hero-ornaments span:first-child{
  right:12%;top:11%;width:72px;height:72px;border-radius:50%;
  background:radial-gradient(circle at 38% 35%, #fff5cc, #d9b76a 58%, rgba(217,183,106,.1) 72%);
  box-shadow:0 0 42px rgba(232,189,102,.42);
}
.festival-hero-exam{
  background:
    radial-gradient(circle at 28% 18%, rgba(232,189,102,.18), transparent 34%),
    linear-gradient(90deg, rgba(43,28,14,.94), rgba(16,16,24,.84));
}
.festival-hero-exam .festival-hero-ornaments span{
  width:88px;height:18px;border-radius:2px;
  background:linear-gradient(90deg, rgba(232,189,102,.15), rgba(232,189,102,.78), rgba(232,189,102,.15));
}
.festival-hero-exam .festival-hero-ornaments span:nth-child(1){left:12%;top:20%;transform:rotate(-10deg)}
.festival-hero-exam .festival-hero-ornaments span:nth-child(2){right:14%;top:18%;transform:rotate(12deg)}
.festival-hero-exam .festival-hero-ornaments span:nth-child(3){left:28%;bottom:16%;transform:rotate(4deg)}
.main-shrine .shrine-roof,
.main-shrine .shrine-gold-disc,
.main-shrine .shrine-figure{
  display:none;
}
.shrine-roof,.temple-roof{
  position:absolute;
  top:8%;
  left:14%;
  right:14%;
  height:64px;
  border-bottom:4px solid rgba(232,189,102,.74);
}
.shrine-roof:before,.temple-roof:before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:78%;
  height:74px;
  transform:translateX(-50%) skewX(-18deg);
  background:linear-gradient(135deg, rgba(150,44,28,.85), rgba(219,160,82,.58));
  clip-path:polygon(50% 0,100% 78%,0 78%);
}
.shrine-gold-disc,.deity-orb{
  position:absolute;
  width:min(56%,360px);
  aspect-ratio:1;
  border-radius:50%;
  background:radial-gradient(circle, rgba(252,226,142,.52), rgba(232,189,102,.14) 48%, transparent 70%);
  box-shadow:0 0 80px rgba(232,189,102,.28);
}
.shrine-figure{
  position:relative;
  width:min(46%,280px);
  height:390px;
}
.figure-aura{
  position:absolute;
  inset:28px 24px 0;
  border:1px solid rgba(232,189,102,.42);
  border-radius:46% 46% 12px 12px;
}
.figure-face{
  position:absolute;
  left:50%;
  top:74px;
  width:82px;
  height:82px;
  transform:translateX(-50%);
  border-radius:50%;
  background:linear-gradient(180deg,#f5d495,#a66c35);
  box-shadow:0 0 30px rgba(232,189,102,.3);
}
.figure-body{
  position:absolute;
  left:50%;
  bottom:22px;
  width:190px;
  height:230px;
  transform:translateX(-50%);
  border-radius:50% 50% 14px 14px;
  background:linear-gradient(135deg,#7a241f,#d8a157 55%,#3b1b18);
}
.ritual-veil{
  position:absolute;
  inset:68px 0 0;
  pointer-events:none;
  overflow:hidden;
}
.ritual-veil span{
  position:absolute;
  bottom:-18%;
  width:160px;
  height:360px;
  border-radius:50%;
  background:radial-gradient(ellipse, rgba(255,255,255,.08), transparent 68%);
  filter:blur(18px);
  animation:veilRise 12s linear infinite;
}
.ritual-veil span:nth-child(1){left:10%;animation-delay:0s}
.ritual-veil span:nth-child(2){left:34%;animation-delay:3s}
.ritual-veil span:nth-child(3){left:62%;animation-delay:1.4s}
.ritual-veil span:nth-child(4){left:82%;animation-delay:5s}
.hero-visual{
  position:relative;min-height:560px;border-radius:0;overflow:hidden;
  display:flex;align-items:flex-end;justify-content:center;
  background:radial-gradient(circle at 50% 70%, rgba(232,189,102,.22), transparent 42%);
}
.hero-visual img{max-height:560px;max-width:100%;filter:drop-shadow(0 24px 60px rgba(0,0,0,.5))}
.hero-flame{
  position:absolute;bottom:8%;width:46%;height:28%;
  background:radial-gradient(ellipse at center, rgba(232,189,102,.36), transparent 65%);
  mix-blend-mode:screen;
}
.eyebrow{margin:0 0 12px;color:var(--gold);font-weight:800;letter-spacing:.16em;font-size:13px}
h1,h2,h3,p{margin-top:0}
.hero-copy h1,.publish-intro h1{font-size:clamp(34px,5vw,68px);line-height:1.05;letter-spacing:0;margin-bottom:20px}
.hero-copy{
  align-self:center;
  max-width:620px;
}
.lead,.publish-intro p,.category-hero p{color:var(--muted);font-size:18px;line-height:1.8}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.section{padding:54px clamp(18px,5vw,72px)}
.section-head{max-width:720px;margin-bottom:24px}
.section-head h2,.altar-band h2{font-size:clamp(26px,3.2vw,44px)}
.temple-grid,.wish-grid,.price-grid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;
}
.temple-card,.wish-card,.price-grid div,.empty-panel{
  min-height:190px;padding:22px;border:1px solid var(--line);
  border-radius:8px;background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  position:relative;overflow:hidden;
}
.temple-card,.ritual-wish,.price-grid > div,.category-hero{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s ease var(--reveal-delay,0ms), transform .7s ease var(--reveal-delay,0ms);
}
.temple-card.is-visible,.ritual-wish.is-visible,.price-grid > div.is-visible,.category-hero.is-visible{
  opacity:1;
  transform:translateY(0);
}
.temple-card{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:18px;
  align-items:center;
  isolation:isolate;
}
.temple-thumb{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.34;
  filter:saturate(.9) contrast(1.08);
  transform:scale(1.04);
  transition:opacity .35s ease, transform .55s ease;
  z-index:-2;
}
.temple-card:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(9,9,14,.84), rgba(9,9,14,.48)), radial-gradient(circle at 78% 12%, currentColor, transparent 42%);
  z-index:-1;
}
.temple-card:hover .temple-thumb{opacity:.52;transform:scale(1.09)}
.mini-deity{
  position:relative;
  width:94px;
  height:132px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(232,189,102,.24);
  border-radius:8px;
  background:
    radial-gradient(circle at 50% 28%, color-mix(in srgb, var(--accent,currentColor) 30%, transparent), transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  overflow:hidden;
}
.mini-deity img{
  width:100%;
  height:100%;
  object-fit:contain;
  opacity:.86;
  filter:saturate(.86) contrast(1.08) drop-shadow(0 14px 22px rgba(0,0,0,.45));
}
.temple-copy{
  display:grid;
  gap:7px;
}
.temple-copy .wish-meta{margin:0}
.temple-copy small{color:var(--gold);line-height:1.5}
.temple-card:before,.wish-card:before,.category-hero:before{
  content:"";position:absolute;inset:0;opacity:.18;pointer-events:none;
  background:radial-gradient(circle at 80% 10%, var(--accent,currentColor), transparent 42%);
}
.temple-card h3{font-size:26px;margin:0}
.temple-card p,.wish-card p,.price-grid span{color:var(--muted);line-height:1.65}
.temple-card .temple-copy > p:not(.wish-meta){margin:0}
.temple-mark{
  position:absolute;top:20px;left:22px;width:22px;height:22px;border-radius:50%;
  background:currentColor;box-shadow:0 0 28px currentColor;
}
.theme-exam{color:var(--red)}
.theme-love{color:var(--pink)}
.theme-wealth{color:var(--gold)}
.theme-health{color:var(--green)}
.theme-newyear{color:#d23f3a}
.theme-memory{color:var(--blue)}
.theme-exam{--accent:var(--red)}
.theme-love{--accent:var(--pink)}
.theme-wealth{--accent:var(--gold)}
.theme-health{--accent:var(--green)}
.theme-newyear{--accent:#d23f3a}
.theme-memory{--accent:var(--blue)}
.festival-band{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:18px;
  align-items:center;
  border-top:1px solid rgba(232,189,102,.18);
  border-bottom:1px solid rgba(232,189,102,.18);
  background:
    radial-gradient(circle at 8% 0%, color-mix(in srgb, var(--accent,var(--gold)) 22%, transparent), transparent 34%),
    linear-gradient(135deg, rgba(232,189,102,.1), rgba(255,255,255,.025));
}
.festival-copy h2{font-size:clamp(28px,3.2vw,46px);line-height:1.12;margin-bottom:12px}
.festival-copy p{color:var(--muted);font-size:17px;line-height:1.75;max-width:860px}
.festival-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:14px;
}
.festival-actions span{
  color:var(--gold);
  font-weight:800;
  letter-spacing:.08em;
}
.wish-intent-section{
  background:
    radial-gradient(circle at 12% 0%, rgba(232,189,102,.08), transparent 32%),
    rgba(255,255,255,.025);
}
.wish-intent-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.wish-intent-grid a{
  min-height:148px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:10px;
  padding:18px;
  border:1px solid rgba(232,189,102,.18);
  border-radius:8px;
  color:var(--text);
  text-decoration:none;
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
}
.wish-intent-grid a:hover{
  border-color:rgba(232,189,102,.55);
  transform:translateY(-2px);
}
.wish-intent-grid span{color:var(--gold);font-size:13px;font-weight:800}
.wish-intent-grid strong{font-size:20px;line-height:1.35}
.wish-intent-grid small{color:var(--muted);font-size:14px;line-height:1.6}
.altar-band{background:rgba(255,255,255,.035)}
.home-offering-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  padding-top:8px;
}
.home-star-card{min-height:246px}
.yearly-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.yearly-star-card{
  min-height:292px;
  border-color:rgba(232,189,102,.38);
}
.yearly-star-card h3{font-size:28px}
.monthly-star-band{background:rgba(255,255,255,.018)}
.monthly-star-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}
.monthly-star-card{
  min-height:206px;
  padding:16px;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}
.monthly-star-card h3{font-size:21px}
.monthly-star-card p{
  -webkit-line-clamp:3;
  line-height:1.65;
}
.monthly-star-card .offering-mark{
  min-height:24px;
  font-size:11px;
}
.lamp-wall{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  padding-top:8px;
}
.wish-card{color:var(--text);min-height:170px}
.ritual-wish{
  min-height:230px;
  padding:26px 22px 20px;
  border-color:rgba(232,189,102,.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(0,0,0,.16)),
    radial-gradient(circle at 50% 0%, var(--accent,currentColor), transparent 30%);
}
.ritual-wish:after{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  bottom:12px;
  height:2px;
  background:linear-gradient(90deg, transparent, rgba(232,189,102,.52), transparent);
}
.wish-flame{
  position:absolute;
  right:22px;
  top:22px;
  width:24px;
  height:32px;
  border-radius:50% 50% 45% 45%;
  background:radial-gradient(circle at 50% 72%, #fff8c4, #e8bd66 42%, transparent 72%);
  filter:drop-shadow(0 0 14px rgba(232,189,102,.55));
  animation:flameGlow 2.1s ease-in-out infinite;
}
.wish-ritual-symbol{
  position:absolute;
  right:18px;
  top:18px;
  width:42px;
  height:42px;
  color:var(--accent,var(--gold));
  filter:drop-shadow(0 0 16px rgba(232,189,102,.3));
  animation:flameGlow 2.8s ease-in-out infinite;
}
.wish-seal{
  position:absolute;
  left:20px;
  top:20px;
  width:auto;
  min-width:58px;
  height:30px;
  padding:0 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(232,189,102,.7);
  border-radius:999px;
  color:#ffe0a0;
  background:
    linear-gradient(135deg, rgba(122,31,27,.96), rgba(190,68,44,.86));
  box-shadow:0 0 22px rgba(232,189,102,.18), inset 0 0 0 3px rgba(232,189,102,.16);
  font-weight:800;
  font-size:12px;
  opacity:1;
}
.wish-seal:before{
  content:"";
  display:none;
}
.wish-seal{line-height:1;letter-spacing:0}
.wish-seal{font-variant-numeric:tabular-nums}
.wish-seal::after{
  content:"";
  position:absolute;
  inset:4px;
  border:1px solid rgba(255,224,160,.48);
  border-radius:999px;
}
.ritual-wish h3{margin-top:54px}
.ritual-wish small{color:var(--muted);line-height:1.5}
.ritual-wish:before{
  content:"";
  position:absolute;
  left:20px;
  bottom:22px;
  width:34px;
  height:34px;
  border:1px solid currentColor;
  opacity:.58;
}
.ritual-wish[data-ritual*="\7ea2\7ebf"]:before{height:2px;width:60px;bottom:36px;background:currentColor;border:0}
.ritual-wish[data-ritual*="\6843\82b1"]:before{border-radius:50%;box-shadow:12px 0 0 currentColor,-12px 0 0 currentColor,0 12px 0 currentColor,0 -12px 0 currentColor}
.ritual-wish[data-ritual*="\540c\5fc3\7ed3"]:before{border-radius:50%;box-shadow:inset 0 0 0 8px rgba(255,255,255,.12)}
.ritual-wish[data-ritual*="\91d1\699c"]:before{width:42px;height:28px;border-radius:3px}
.ritual-wish[data-ritual*="\6587\5377"]:before{border-radius:50% 6px 50% 6px}
.ritual-wish[data-ritual*="\5143\5b9d"]:before{border-radius:50% 50% 20% 20%;height:24px}
.ritual-wish[data-ritual*="\91d1\5370"]:before{border-radius:4px;transform:rotate(45deg)}
.ritual-wish[data-ritual*="\9752\706f"]:before,.ritual-wish[data-ritual*="\661f\706f"]:before,.ritual-wish[data-ritual*="\957f\660e\706f"]:before{border-radius:50% 50% 10px 10px}
.ritual-wish[data-ritual*="\7389\7b26"]:before,.ritual-wish[data-ritual*="\798f\724c"]:before{border-radius:4px;transform:rotate(8deg)}
.ritual-wish[data-ritual*="\5e73\5b89\94c3"]:before{border-radius:50% 50% 6px 6px}
.ritual-wish[data-ritual*="\706f\7b3c"]:before{border-radius:45%}
.ritual-wish[data-ritual*="\83b2\53f0"]:before{border-radius:50% 50% 8px 8px}
.ritual-wish[data-ritual*="\8ffd\601d\7b3a"]:before{width:26px;height:42px;border-radius:2px}
.wish-meta{color:var(--gold);font-size:13px;margin-bottom:18px}
.wish-card h3{font-size:21px}
.temple-wishes{
  display:grid;
  gap:24px;
}
.wish-tier{
  border:1px solid rgba(255,255,255,.1);
  border-radius:8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    radial-gradient(circle at 92% 0%, color-mix(in srgb, var(--accent,var(--gold)) 28%, transparent), transparent 36%);
  overflow:hidden;
}
.tier-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  padding:22px 24px;
  border-bottom:1px solid rgba(255,255,255,.09);
}
.tier-head h3{
  margin:0;
  color:var(--text);
  font-size:clamp(22px,2.4vw,32px);
}
.tier-head .eyebrow{margin-bottom:8px}
.tier-head > span{
  color:rgba(185,176,167,.82);
  font-size:13px;
  line-height:1.6;
  text-align:right;
}
.honored-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  padding:18px;
}
.offering-card{
  position:relative;
  min-height:258px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:16px;
  padding:20px;
  border:1px solid rgba(232,189,102,.22);
  border-radius:8px;
  color:var(--text);
  background:
    linear-gradient(180deg, rgba(20,16,13,.88), rgba(18,18,25,.94)),
    radial-gradient(circle at 18% 0%, rgba(232,189,102,.16), transparent 34%);
  box-shadow:0 18px 42px rgba(0,0,0,.22);
  overflow:hidden;
  isolation:isolate;
}
.offering-card:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(90deg, rgba(10,9,12,.86), rgba(10,9,12,.58)),
    var(--offering-bg);
  background-size:cover;
  background-position:center;
  opacity:.28;
  filter:saturate(.9) contrast(1.06);
  transform:scale(1.05);
}
.offering-card:after{
  content:"";
  position:absolute;
  inset:10px;
  z-index:-1;
  border:1px solid rgba(232,189,102,.13);
  border-radius:6px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), transparent 34%),
    radial-gradient(circle at 85% 12%, color-mix(in srgb, var(--accent,var(--gold)) 20%, transparent), transparent 32%);
  pointer-events:none;
}
.offering-card:hover,.offering-row:hover{
  border-color:rgba(232,189,102,.5);
  background-color:rgba(255,255,255,.055);
}
.offering-card:hover:before{opacity:.36}
.offering-card-head,.offering-meta,.row-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.offering-mark{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:4px;
  color:#1b1208;
  background:linear-gradient(135deg,#f5d489,#b77a32);
  font-weight:800;
  font-size:12px;
  box-shadow:0 0 22px rgba(232,189,102,.18);
}
.offering-date,.offering-meta,.row-meta{
  color:rgba(185,176,167,.82);
  font-size:13px;
  line-height:1.55;
}
.offering-card h3{
  margin:4px 0 0;
  font-size:24px;
}
.offering-card p{
  margin:0;
  color:rgba(244,239,231,.9);
  line-height:1.78;
  display:-webkit-box;
  -webkit-line-clamp:4;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.offering-meta{
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
}
.quiet-tier{
  background:
    linear-gradient(180deg, rgba(255,255,255,.042), rgba(255,255,255,.015)),
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--accent,var(--gold)) 14%, transparent), transparent 34%);
}
.quiet-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  padding:16px 18px 18px;
}
.offering-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) 150px;
  gap:18px;
  align-items:center;
  min-height:112px;
  padding:16px 18px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:8px;
  background:rgba(255,255,255,.035);
  box-shadow:none;
}
.row-main strong{
  display:block;
  margin-bottom:8px;
  color:var(--text);
  font-size:18px;
}
.row-main p{
  margin:0;
  color:rgba(185,176,167,.9);
  line-height:1.65;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.row-meta{
  align-items:flex-end;
  flex-direction:column;
  text-align:right;
}
.devotion-notes{
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01)),
    radial-gradient(circle at 18% 0%, rgba(232,189,102,.1), transparent 34%);
}
.devotion-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.devotion-grid article{
  min-height:250px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:8px;
  padding:22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022)),
    radial-gradient(circle at 86% 0%, rgba(232,189,102,.12), transparent 34%);
}
.devotion-grid strong{
  display:block;
  margin-bottom:14px;
  color:var(--gold);
  font-size:22px;
}
.devotion-grid span{
  color:rgba(185,176,167,.92);
  line-height:1.78;
}
.devotion-disclaimer{
  max-width:980px;
  margin:18px 0 0;
  color:rgba(185,176,167,.68);
  font-size:13px;
  line-height:1.75;
}
.price-grid div{min-height:120px}
.price-grid strong{display:block;font-size:22px;margin-bottom:8px;color:var(--text)}
.category-hero{
  margin:34px clamp(18px,5vw,72px) 0;
  min-height:420px;padding:42px;border:1px solid var(--line);border-radius:8px;
  background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.02));
  position:relative;overflow:hidden;
  isolation:isolate;
}
.temple-hero-art{
  position:absolute;
  inset:-28px;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.26;
  filter:saturate(.9) contrast(1.08) blur(18px);
  transform:scale(1.08);
  z-index:-3;
}
.category-hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(8,8,13,.72), rgba(8,8,13,.44) 44%, rgba(8,8,13,.82)),
    radial-gradient(circle at 30% 42%, transparent, rgba(8,8,13,.62) 72%);
  z-index:-2;
  pointer-events:none;
}
.temple-hero{
  display:grid;
  grid-template-columns:minmax(260px,.9fr) minmax(320px,1.1fr);
  gap:34px;
  align-items:center;
}
.category-hero h1{font-size:clamp(44px,6vw,82px);line-height:1}
.deity-stage{
  position:relative;
  min-height:430px;
  border:0;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.18));
  overflow:hidden;
  transform:translate(var(--ritual-x,0), var(--ritual-y,0));
  transition:transform .35s ease;
  box-shadow:0 28px 70px rgba(0,0,0,.42);
}
.deity-stage:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(5,5,8,.68), transparent 25%, transparent 75%, rgba(5,5,8,.68)),
    linear-gradient(180deg, rgba(5,5,8,.18), rgba(5,5,8,.5));
  z-index:1;
  pointer-events:none;
}
.deity-main-art{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  filter:saturate(.98) contrast(1.05);
  z-index:0;
}
.smoke-field span{
  position:absolute;
  bottom:10%;
  width:80px;
  height:170px;
  border-radius:50%;
  background:radial-gradient(ellipse, rgba(255,255,255,.12), transparent 68%);
  filter:blur(12px);
  animation:smokeRise 7s ease-in-out infinite;
  z-index:2;
}
.smoke-field span:nth-child(1){left:22%;animation-delay:.2s}
.smoke-field span:nth-child(2){left:48%;animation-delay:1.8s}
.smoke-field span:nth-child(3){left:68%;animation-delay:3.2s}
.ritual-facts{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin:20px 0 24px;
}
.ritual-facts div{
  border:1px solid rgba(255,255,255,.12);
  border-radius:8px;
  padding:12px;
  background:rgba(255,255,255,.045);
}
.ritual-facts dt{font-size:12px;color:var(--gold);margin-bottom:6px}
.ritual-facts dd{margin:0;color:var(--text);line-height:1.5}
.compact-head{margin-bottom:18px}
.ritual-steps{
  display:grid;
  gap:12px;
  margin-top:28px;
}
.ritual-steps div{
  display:grid;
  grid-template-columns:54px 88px 1fr;
  gap:12px;
  align-items:center;
  border:1px solid rgba(232,189,102,.2);
  background:rgba(255,255,255,.04);
  padding:14px;
  border-radius:8px;
}
.ritual-steps strong{
  color:var(--gold);
  font-size:22px;
}
.ritual-steps span{
  font-weight:800;
}
.ritual-steps small{
  color:var(--muted);
  line-height:1.5;
}
.publish-shell,.pay-shell{
  display:grid;grid-template-columns:.9fr 1.1fr;gap:34px;
  padding:54px clamp(18px,5vw,72px);
}
.publish-shell.compact{grid-template-columns:1fr;max-width:680px;margin:0 auto}
.ritual-form,.admin-edit{
  display:grid;gap:13px;padding:24px;border:1px solid var(--line);
  border-radius:8px;background:rgba(255,255,255,.055);
}
label{font-weight:700;color:var(--text)}
input,textarea,select{
  width:100%;border:1px solid var(--line);border-radius:8px;
  background:#11111a;color:var(--text);padding:12px 13px;font:inherit;
}
textarea{min-height:150px;resize:vertical}
.field-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.text-button{
  border:0;
  padding:0;
  color:var(--gold);
  background:transparent;
  font:inherit;
  font-weight:800;
  cursor:pointer;
}
.field-hint{
  margin:-6px 0 2px;
  color:rgba(185,176,167,.72);
  font-size:12px;
}
.offering-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.offering-grid label,.choice-card{
  border:1px solid var(--line);border-radius:8px;padding:14px;background:rgba(255,255,255,.04);
}
.offering-grid label{position:relative;cursor:pointer}
.offering-grid input[type="radio"]{position:absolute;opacity:0;pointer-events:none}
.offering-grid label:has(input:checked){
  border-color:rgba(232,189,102,.78);
  background:rgba(232,189,102,.12);
  box-shadow:0 0 24px rgba(232,189,102,.12);
}
.offering-grid label:before{
  content:"";
  position:absolute;
  right:14px;
  top:14px;
  width:14px;
  height:14px;
  border:1px solid rgba(232,189,102,.62);
  border-radius:50%;
}
.offering-grid label:has(input:checked):before{background:var(--gold);box-shadow:0 0 16px rgba(232,189,102,.45)}
.offering-grid strong,.offering-grid span{display:block;margin-top:6px}
.offering-grid span{color:var(--muted);font-weight:400}
.choice-panel{display:grid;gap:8px}
.ritual-choice-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
.beneficiary-choice-grid{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.wish-purpose-grid{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.purpose-hint{
  padding:12px 14px;
  border:1px solid rgba(232,189,102,.18);
  border-radius:8px;
  background:rgba(232,189,102,.06);
}
.festival-form-note{
  display:grid;
  gap:7px;
  padding:14px 16px;
  border:1px solid rgba(232,189,102,.28);
  border-radius:8px;
  background:
    radial-gradient(circle at 0% 0%, rgba(232,189,102,.15), transparent 38%),
    rgba(232,189,102,.055);
}
.festival-form-note .festival-note-kicker{
  width:max-content;
  padding:3px 8px;
  border-radius:999px;
  background:rgba(232,189,102,.12);
  color:var(--gold);
  font-size:12px;
  font-weight:800;
}
.festival-form-note strong{color:var(--gold);font-size:18px}
.festival-form-note span{color:rgba(244,239,231,.88);line-height:1.7}
.festival-form-note small{color:var(--muted);line-height:1.65}
.festival-wish-tag{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  margin:0 0 16px;
  padding:8px 12px;
  border:1px solid rgba(232,189,102,.28);
  border-radius:999px;
  color:var(--gold);
  background:rgba(232,189,102,.08);
  font-size:13px;
  font-weight:800;
}
.beneficiary-chip{
  position:relative;
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  color:var(--muted);
  background:rgba(255,255,255,.035);
  cursor:pointer;
}
.beneficiary-chip input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.beneficiary-chip:has(input:checked){
  color:#1b1208;
  border-color:rgba(232,189,102,.78);
  background:linear-gradient(135deg,#f0c979,#b77a32);
  font-weight:800;
}
.choice-card{
  position:relative;
  display:grid;
  grid-template-columns:28px 1fr;
  align-items:center;
  gap:10px;
  cursor:pointer;
}
.choice-card input{position:absolute;opacity:0;pointer-events:none}
.choice-card:has(input:checked){
  border-color:rgba(232,189,102,.78);
  background:rgba(232,189,102,.12);
  box-shadow:0 0 24px rgba(232,189,102,.12);
}
.choice-symbol{
  width:32px;
  height:32px;
  color:var(--gold);
  flex:0 0 auto;
}
.deity-symbol{
  position:relative;
  display:block;
  border:1px solid currentColor;
  border-radius:50% 50% 10px 10px;
  background:radial-gradient(circle at 50% 34%, rgba(232,189,102,.45), transparent 38%);
}
.deity-symbol:before{
  content:"";
  position:absolute;
  left:50%;
  top:6px;
  width:10px;
  height:10px;
  transform:translateX(-50%);
  border-radius:50%;
  background:currentColor;
  box-shadow:0 13px 0 -2px currentColor;
}
.deity-symbol:after{
  content:"";
  position:absolute;
  left:8px;
  right:8px;
  bottom:5px;
  height:7px;
  border:1px solid currentColor;
  border-top:0;
  opacity:.85;
}
.ritual-symbol{
  position:relative;
  display:inline-block;
  width:34px;
  height:34px;
  color:var(--gold);
}
.ritual-symbol:before,.ritual-symbol:after{content:"";position:absolute;box-sizing:border-box}
.ritual-symbol:before{
  inset:5px;
  border:1px solid currentColor;
  border-radius:4px;
  background:rgba(232,189,102,.08);
}
.ritual-symbol[data-ritual*="\7ea2\7ebf"]:before{left:2px;right:2px;top:16px;height:2px;border:0;background:currentColor;box-shadow:0 5px 0 rgba(232,189,102,.32)}
.ritual-symbol[data-ritual*="\7ea2\7ebf"]:after{left:11px;top:9px;width:12px;height:18px;border:1px solid currentColor;border-radius:50%;transform:rotate(36deg)}
.ritual-symbol[data-ritual*="\6843\82b1"]:before{left:11px;top:11px;width:12px;height:12px;border-radius:50%;background:currentColor;box-shadow:10px 0 0 currentColor,-10px 0 0 currentColor,0 10px 0 currentColor,0 -10px 0 currentColor}
.ritual-symbol[data-ritual*="\6843\82b1"]:after{left:15px;top:15px;width:4px;height:4px;border-radius:50%;background:#fff1bd}
.ritual-symbol[data-ritual*="\540c\5fc3\7ed3"]:before{left:7px;top:7px;width:20px;height:20px;border-radius:50%;box-shadow:inset 0 0 0 7px rgba(232,189,102,.18)}
.ritual-symbol[data-ritual*="\540c\5fc3\7ed3"]:after{left:8px;top:8px;width:18px;height:18px;border:1px solid currentColor;border-radius:50%;transform:rotate(45deg)}
.ritual-symbol[data-ritual*="\706f"],.ritual-symbol[data-ritual*="\70db"]{filter:drop-shadow(0 0 12px rgba(232,189,102,.4))}
.ritual-symbol[data-ritual*="\706f"]:before,.ritual-symbol[data-ritual*="\70db"]:before{left:11px;right:11px;top:13px;bottom:3px;border-radius:4px;background:currentColor}
.ritual-symbol[data-ritual*="\706f"]:after,.ritual-symbol[data-ritual*="\70db"]:after{left:10px;top:1px;width:14px;height:18px;border-radius:50% 50% 45% 45%;background:radial-gradient(circle at 50% 72%, #fff8c4, #e8bd66 42%, transparent 74%)}
.ritual-symbol[data-ritual*="\706f\7b3c"]:before{left:8px;right:8px;top:5px;bottom:4px;border-radius:45%;background:linear-gradient(#eec171,#9d3326);border:1px solid currentColor}
.ritual-symbol[data-ritual*="\706f\7b3c"]:after{left:15px;top:0;width:4px;height:34px;border-left:1px solid currentColor}
.scene-symbol[data-ritual*="\706f\7b3c"]:before{left:50%;right:auto;top:34px;width:78px;height:100px;transform:translateX(-50%);border-radius:44% 44% 18% 18%;background:linear-gradient(180deg,#f0c56f,#b83d31 62%,#7d241f);border:1px solid rgba(232,189,102,.75);box-shadow:inset 18px 0 0 rgba(255,255,255,.08), inset -18px 0 0 rgba(0,0,0,.08)}
.scene-symbol[data-ritual*="\706f\7b3c"]:after{left:50%;top:10px;width:2px;height:126px;transform:translateX(-50%);border:0;background:currentColor;box-shadow:-35px 24px 0 -34px currentColor,35px 24px 0 -34px currentColor}
.ritual-symbol[data-ritual*="\5e73\5b89\94c3"]:before{left:9px;top:6px;width:16px;height:19px;border-radius:50% 50% 6px 6px;background:rgba(232,189,102,.12)}
.ritual-symbol[data-ritual*="\5e73\5b89\94c3"]:after{left:15px;top:23px;width:4px;height:4px;border-radius:50%;background:currentColor;box-shadow:0 5px 0 rgba(232,189,102,.5)}
.ritual-symbol[data-ritual*="\798f\724c"]:before,.ritual-symbol[data-ritual*="\8ffd\601d\7b3a"]:before,.ritual-symbol[data-ritual*="\7389\7b26"]:before{left:9px;top:3px;width:16px;height:28px;border-radius:3px;background:rgba(232,189,102,.1)}
.ritual-symbol[data-ritual*="\798f\724c"]:after,.ritual-symbol[data-ritual*="\8ffd\601d\7b3a"]:after,.ritual-symbol[data-ritual*="\7389\7b26"]:after{left:13px;top:10px;width:8px;height:12px;border-top:2px solid currentColor;border-bottom:2px solid currentColor}
.ritual-symbol[data-ritual*="\724c\4f4d"]:before{left:8px;top:3px;width:18px;height:29px;border-radius:8px 8px 3px 3px;background:linear-gradient(180deg, rgba(232,189,102,.22), rgba(232,189,102,.08));border:1px solid currentColor}
.ritual-symbol[data-ritual*="\724c\4f4d"]:after{left:12px;top:10px;width:10px;height:15px;border-left:2px solid currentColor;border-right:2px solid currentColor;box-shadow:0 18px 0 -6px currentColor}
.scene-symbol[data-ritual*="\724c\4f4d"]:before{left:50%;top:18px;width:74px;height:116px;transform:translateX(-50%);border-radius:16px 16px 4px 4px;background:linear-gradient(180deg, rgba(232,189,102,.26), rgba(80,48,34,.48));border:1px solid rgba(232,189,102,.78)}
.scene-symbol[data-ritual*="\724c\4f4d"]:after{left:50%;top:48px;width:24px;height:50px;transform:translateX(-50%);border-left:3px solid currentColor;border-right:3px solid currentColor;box-shadow:0 74px 0 -8px currentColor}
.ritual-symbol[data-ritual*="\83b2\53f0"]:before{left:5px;top:17px;width:24px;height:10px;border-radius:50% 50% 6px 6px;background:rgba(232,189,102,.16)}
.ritual-symbol[data-ritual*="\83b2\53f0"]:after{left:10px;top:8px;width:14px;height:14px;border-radius:50%;border:1px solid currentColor;box-shadow:0 5px 0 -2px currentColor}
.ritual-symbol[data-ritual*="\91d1\699c"]:before,.ritual-symbol[data-ritual*="\6587\5377"]:before{left:6px;top:8px;width:22px;height:18px;border-radius:3px;background:rgba(232,189,102,.1)}
.ritual-symbol[data-ritual*="\91d1\699c"]:after,.ritual-symbol[data-ritual*="\6587\5377"]:after{left:10px;top:13px;width:14px;height:2px;background:currentColor;box-shadow:0 5px 0 currentColor}
.ritual-symbol[data-ritual*="\91d1\5370"]:before{left:8px;top:8px;width:18px;height:18px;border-radius:4px;transform:rotate(45deg);background:rgba(232,189,102,.13)}
.ritual-symbol[data-ritual*="\5143\5b9d"]:before{left:6px;top:12px;width:22px;height:13px;border-radius:50% 50% 20% 20%;background:currentColor}
.ritual-symbol[data-ritual*="\805a\5b9d\706f"]:before{left:7px;top:12px;width:20px;height:16px;border-radius:50% 50% 18% 18%;background:currentColor}
.ritual-symbol[data-ritual*="\805a\5b9d\706f"]:after{left:12px;top:2px;width:10px;height:14px;border-radius:50%;background:radial-gradient(circle at 50% 72%, #fff8c4, #e8bd66 45%, transparent 72%)}
.ritual-symbol[data-ritual*="\9999"]:before{left:16px;top:7px;width:2px;height:26px;border:0;background:currentColor;box-shadow:-7px 6px 0 currentColor,7px 6px 0 currentColor}
.ritual-symbol[data-ritual*="\9999"]:after{left:4px;top:0;width:26px;height:20px;border:0;background:radial-gradient(ellipse at 40% 80%, rgba(255,255,255,.14), transparent 48%),radial-gradient(ellipse at 70% 45%, rgba(255,255,255,.1), transparent 44%);filter:blur(2px)}
.wish-ceremony{
  min-height:calc(100vh - 68px);
  display:grid;
  grid-template-columns:minmax(320px,.95fr) minmax(320px,1.05fr);
  gap:34px;
  align-items:center;
  padding:46px clamp(18px,5vw,72px);
  position:relative;
  overflow:hidden;
}
.ceremony-media{display:grid;gap:14px}
.wish-ceremony:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 26% 44%, currentColor, transparent 34%),
    linear-gradient(90deg, rgba(6,6,10,.88), rgba(16,16,24,.54), rgba(6,6,10,.9));
  opacity:.22;
  pointer-events:none;
}
.ceremony-stage{
  min-height:0;
  aspect-ratio:4/5;
  position:relative;
  border:1px solid rgba(232,189,102,.28);
  background:
    radial-gradient(circle at 50% 42%, rgba(232,189,102,.2), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(0,0,0,.22));
  overflow:hidden;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04), 0 30px 90px rgba(0,0,0,.34);
}
.ceremony-deity-bg{
  position:absolute;
  inset:-28px;
  width:calc(100% + 56px);
  height:calc(100% + 56px);
  object-fit:cover;
  object-position:center;
  object-position:center top;
  opacity:.2;
  filter:blur(14px) saturate(.9) contrast(1.08);
  z-index:0;
}
.ceremony-deity-art{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  opacity:.92;
  filter:saturate(.96) contrast(1.06);
  transform:none;
  z-index:1;
}
.ceremony-stage:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 50% 42%, transparent 20%, rgba(8,8,13,.22) 56%, rgba(8,8,13,.72)),
    linear-gradient(180deg, rgba(8,8,13,.16), rgba(8,8,13,.66));
  pointer-events:none;
}
.ceremony-stage:before{
  display:none;
}
.ceremony-glow{
  position:absolute;
  left:50%;
  top:45%;
  width:330px;
  height:330px;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:radial-gradient(circle, rgba(232,189,102,.36), rgba(232,189,102,.08) 46%, transparent 70%);
  animation:flameGlow 4s ease-in-out infinite;
  z-index:1;
}
.ceremony-smoke span{
  position:absolute;
  bottom:18%;
  width:110px;
  height:230px;
  border-radius:50%;
  background:radial-gradient(ellipse, rgba(255,255,255,.13), transparent 68%);
  filter:blur(14px);
  animation:smokeRise 8s ease-in-out infinite;
  z-index:3;
}
.ceremony-smoke span:nth-child(1){left:28%;animation-delay:.2s}
.ceremony-smoke span:nth-child(2){left:48%;animation-delay:2s}
.ceremony-smoke span:nth-child(3){left:64%;animation-delay:3.4s}
.ceremony-symbols{
  position:absolute;
  inset:0;
  z-index:4;
}
.scene-symbol{
  position:absolute;
  left:50%;
  top:42%;
  transform:translate(-50%,-50%);
  width:150px;
  height:150px;
  color:var(--gold);
  filter:drop-shadow(0 0 38px rgba(232,189,102,.34));
}
.ceremony-prayer{
  position:relative;
  z-index:1;
  padding:18px 20px;
  border:1px solid rgba(232,189,102,.24);
  border-radius:8px;
  background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  color:#f4efe7;
  line-height:1.85;
  font-size:15px;
  letter-spacing:0;
  box-shadow:0 16px 40px rgba(0,0,0,.28);
}
.wish-scroll{
  position:relative;
  z-index:1;
  padding:44px;
  border:1px solid rgba(232,189,102,.25);
  border-radius:8px;
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
}
.wish-scroll h1{font-size:clamp(34px,4.4vw,58px);line-height:1.08;margin-bottom:14px}
.beneficiary-line{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin:0 0 16px;
  padding:7px 10px;
  border:1px solid rgba(232,189,102,.2);
  border-radius:999px;
  color:rgba(185,176,167,.86);
  background:rgba(255,255,255,.035);
  font-size:14px;
}
.beneficiary-line strong{color:var(--gold)}
.breadcrumb{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:18px;
  color:var(--muted);
  font-size:13px;
}
.breadcrumb a{color:var(--gold)}
.wish-detail{
  margin:44px auto;max-width:860px;padding:54px;border:1px solid var(--line);
  border-radius:8px;background:rgba(255,255,255,.055);
}
.wish-detail h1{font-size:42px}
.wish-body{
  margin:0 0 22px;
  padding:22px 0;
  border-top:1px solid rgba(232,189,102,.18);
  border-bottom:1px solid rgba(232,189,102,.18);
  font-size:22px;
  line-height:1.9;
  color:var(--text);
}
.detail-meta{display:flex;gap:8px;flex-wrap:wrap;color:var(--muted);font-size:13px}
.detail-meta span{border:1px solid rgba(255,255,255,.1);border-radius:999px;padding:6px 10px;background:rgba(255,255,255,.035)}
.ritual-text{
  margin:0 0 12px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border:1px solid rgba(232,189,102,.22);
  border-radius:999px;
  background:rgba(232,189,102,.055);
}
.ritual-text span{font-size:12px;color:var(--gold);font-weight:800}
.ritual-text strong{font-size:15px;color:var(--text)}
.deity-note{
  margin:4px 0 14px;
  padding:12px 0 0;
  border-top:1px solid rgba(255,255,255,.09);
  border-left:0;
  border-right:0;
  border-bottom:0;
  border-radius:8px;
  background:transparent;
}
.deity-note span{display:block;margin-bottom:8px;color:var(--gold);font-size:12px;font-weight:800}
.deity-note p{margin:0;color:rgba(185,176,167,.78);line-height:1.72;font-size:15px}
.wish-disclaimer{
  margin:14px 0 0;
  color:rgba(185,176,167,.6);
  font-size:12px;
  line-height:1.7;
}
.wish-support-panel{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin:16px 0;
  padding:14px;
  border:1px solid rgba(232,189,102,.18);
  border-radius:8px;
  background:
    radial-gradient(circle at 12% 50%, rgba(232,189,102,.14), transparent 34%),
    rgba(255,255,255,.035);
}
.wish-support-panel span{
  display:block;
  margin-bottom:4px;
  color:var(--muted);
  font-size:12px;
}
.wish-support-panel strong{
  color:var(--gold);
  font-size:32px;
  line-height:1;
}
.wish-support-panel form{margin:0}
.wish-certificate{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  margin:22px 0;
}
.wish-certificate.compact{grid-template-columns:repeat(2,minmax(0,1fr))}
.wish-certificate div{
  border:1px solid rgba(232,189,102,.18);
  border-radius:8px;
  padding:13px;
  background:
    linear-gradient(180deg, rgba(232,189,102,.08), rgba(255,255,255,.025));
}
.wish-certificate span{
  display:block;
  margin-bottom:6px;
  color:var(--muted);
  font-size:12px;
}
.wish-certificate strong{
  color:var(--text);
  font-size:15px;
  line-height:1.45;
  word-break:break-word;
}
.wish-extra-section{
  padding:0 clamp(18px,5vw,72px) 58px;
}
.wish-info-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-bottom:36px;
}
.wish-info-grid article{
  border:1px solid var(--line);
  border-radius:8px;
  padding:22px;
  background:rgba(255,255,255,.045);
}
.wish-info-grid h2,.related-wishes h2{font-size:clamp(22px,2.4vw,32px)}
.wish-info-grid p{color:var(--muted);line-height:1.75}
.text-link{display:inline-flex;margin-top:6px;color:var(--gold);font-weight:800}
.related-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.related-grid a{
  display:grid;
  gap:8px;
  min-height:96px;
  border:1px solid var(--line);
  border-radius:8px;
  padding:16px;
  background:rgba(255,255,255,.04);
}
.related-grid strong{font-size:18px}
.related-grid span{color:var(--muted);font-size:13px;line-height:1.5}
.submitted-ceremony{
  min-height:calc(100vh - 68px);
  display:grid;
  grid-template-columns:minmax(320px,.85fr) minmax(340px,1.15fr);
  gap:34px;
  align-items:center;
  padding:54px clamp(18px,5vw,72px);
  background:
    radial-gradient(circle at 26% 46%, color-mix(in srgb, var(--accent,var(--gold)) 18%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.025), transparent);
}
.submitted-altar{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  overflow:hidden;
}
.submitted-light{
  width:170px;
  height:170px;
  margin-bottom:74px;
  border-radius:50%;
  background:
    radial-gradient(circle at 50% 72%, #fff8c4, #e8bd66 34%, rgba(232,189,102,.16) 58%, transparent 72%);
  filter:drop-shadow(0 0 42px rgba(232,189,102,.54));
  animation:flameGlow 2.4s ease-in-out infinite;
}
.submitted-altar:before{
  content:"";
  position:absolute;
  bottom:52px;
  width:360px;
  height:64px;
  border-radius:50%;
  background:radial-gradient(ellipse, rgba(232,189,102,.22), transparent 70%);
}
.submitted-incense span{
  position:absolute;
  left:50%;
  bottom:170px;
  width:90px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(ellipse, rgba(255,255,255,.14), transparent 70%);
  filter:blur(13px);
  animation:smokeRise 7s ease-in-out infinite;
}
.submitted-incense span:nth-child(1){transform:translateX(-92px);animation-delay:0s}
.submitted-incense span:nth-child(2){transform:translateX(-35px);animation-delay:1.6s}
.submitted-incense span:nth-child(3){transform:translateX(40px);animation-delay:3.1s}
.submitted-card{
  border:1px solid rgba(232,189,102,.2);
  border-radius:8px;
  padding:30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    radial-gradient(circle at 92% 0%, color-mix(in srgb, var(--accent,var(--gold)) 18%, transparent), transparent 32%);
}
.submitted-card h1{font-size:clamp(32px,4vw,54px);line-height:1.1}
.submitted-card p{color:var(--muted);line-height:1.8}
.submitted-meta{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  margin:22px 0;
}
.submitted-meta div{
  border:1px solid rgba(255,255,255,.1);
  border-radius:8px;
  padding:12px;
  background:rgba(255,255,255,.035);
}
.submitted-meta dt{color:var(--gold);font-size:12px;margin-bottom:6px}
.submitted-meta dd{margin:0;color:var(--text);line-height:1.45}
.submitted-card blockquote{
  margin:0 0 22px;
  padding:18px 0 0;
  border-top:1px solid rgba(255,255,255,.09);
  color:rgba(244,239,231,.92);
  line-height:1.82;
}
.pay-card{
  padding:28px;
  border:1px solid var(--line);
  border-radius:8px;
  background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.035));
}
.pay-lead{color:var(--muted);line-height:1.8}
.pay-order{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin:22px 0;
}
.pay-order div{
  padding:14px;
  border:1px solid rgba(232,189,102,.28);
  border-radius:8px;
  background:rgba(232,189,102,.08);
}
.pay-order span,.payment-facts span{display:block;color:var(--muted);font-size:12px;margin-bottom:6px}
.pay-order strong,.payment-facts strong{color:var(--text);font-size:18px}
.pay-done-form{display:grid;gap:12px}
.pay-channel-row{display:flex;gap:10px;flex-wrap:wrap}
.pay-channel-row label{
  display:flex;align-items:center;gap:8px;
  width:auto;padding:10px 14px;border:1px solid var(--line);border-radius:999px;
  background:rgba(255,255,255,.045);
}
.pay-channel-row input{width:auto}
.pay-note{grid-column:1/-1;color:var(--muted);font-size:13px;line-height:1.7}
.qr-panel{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;align-content:start}
.qr-box{
  min-height:240px;display:flex;align-items:center;justify-content:center;
  border:1px dashed rgba(232,189,102,.55);border-radius:8px;color:var(--muted);
  background:rgba(255,255,255,.035);overflow:hidden;text-align:center;line-height:1.8;
}
.qr-box img{width:100%;height:100%;object-fit:contain;padding:14px}
.qr-box span{display:grid;place-items:center;width:100%;height:100%}
.payment-facts{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.payment-facts div,.payment-wish-card{
  padding:14px;border:1px solid var(--line);border-radius:8px;background:rgba(255,255,255,.045);
}
.payment-actions{align-items:flex-start}
.payment-actions form{display:grid;gap:10px;flex:1}
.admin-shell{padding:36px clamp(18px,5vw,72px)}
.admin-nav{
  display:flex;gap:10px;flex-wrap:wrap;margin-bottom:22px;padding:12px;
  border:1px solid var(--line);border-radius:8px;background:rgba(255,255,255,.045);
}
.admin-nav a{
  color:var(--text);text-decoration:none;padding:8px 12px;border-radius:999px;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);
}
.admin-nav a:hover{border-color:rgba(232,189,102,.55)}
.admin-kpis{display:grid;grid-template-columns:repeat(5,1fr);gap:14px;margin:18px 0 28px}
.admin-kpis div,.admin-kpis a,.admin-table,.admin-filter,.admin-actions,.content-group{
  border:1px solid var(--line);border-radius:8px;background:rgba(255,255,255,.05);
}
.admin-kpis div,.admin-kpis a{padding:18px;text-decoration:none;color:var(--text)}
.admin-kpis span{display:block;color:var(--muted)}.admin-kpis strong{font-size:34px}
.admin-quick-actions{display:flex;gap:12px;flex-wrap:wrap}
.admin-filter{display:flex;gap:10px;align-items:center;padding:12px;margin:12px 0;flex-wrap:wrap}
.admin-table{width:100%;border-collapse:collapse;overflow:hidden}
.admin-table th,.admin-table td{padding:11px;border-bottom:1px solid var(--line);text-align:left;font-size:14px}
.admin-edit{max-width:840px}.check-line{display:flex;gap:8px;align-items:center}.check-line input{width:auto}
.admin-actions{display:flex;gap:12px;padding:12px;margin-top:16px}
.button.danger{
  background:rgba(148,39,39,.88);color:#fff;border-color:rgba(255,160,140,.35);
}
.admin-help{color:var(--muted);max-width:760px}
.content-edit{display:grid;gap:18px;max-width:980px}
.content-group{display:grid;gap:10px;padding:18px}
.content-group h2{margin-bottom:4px}
.content-group textarea{min-height:76px}
.admin-dashboard-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin:22px 0;
}
.admin-panel{
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.045);
  padding:18px;
}
.admin-panel h2{font-size:22px;margin-bottom:14px}
.admin-mini-row{
  display:block;
  padding:12px 0;
  border-top:1px solid rgba(255,255,255,.08);
  color:var(--text);
  text-decoration:none;
}
.admin-mini-row:first-of-type{border-top:0}
.admin-mini-row strong{display:flex;justify-content:space-between;gap:12px}
.admin-mini-row em{font-style:normal;color:var(--gold)}
.admin-mini-row span,.admin-muted{color:var(--muted);font-size:13px;line-height:1.6}
.category-stat-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.category-stat-grid a{
  display:grid;
  gap:6px;
  padding:14px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  color:var(--text);
  text-decoration:none;
  background:rgba(255,255,255,.035);
}
.category-stat-grid span{color:var(--muted);font-size:13px}
@media (max-width:860px){
  .home-hero,.publish-shell,.pay-shell,.wish-ceremony,.submitted-ceremony,.festival-band{grid-template-columns:1fr}
  .temple-grid,.wish-grid,.price-grid,.admin-kpis,.lamp-wall,.home-offering-grid,.devotion-grid,.temple-hero,.ritual-facts,.wish-info-grid,.related-grid,.honored-grid,.quiet-list,.wish-intent-grid,.wish-certificate,.wish-certificate.compact,.admin-dashboard-grid,.category-stat-grid,.pay-order,.qr-panel,.payment-facts{grid-template-columns:1fr}
  .hero-visual{min-height:420px}
  .topbar{align-items:flex-start;flex-direction:column}
  .home-hero{padding-top:18px}
  .festival-actions{align-items:flex-start}
  .main-shrine{min-height:56vh}
  .ceremony-stage{min-height:420px}
  .ritual-text{align-items:flex-start;flex-direction:column}
  .ritual-text div{text-align:left}
  .ritual-steps div{grid-template-columns:1fr}
  .temple-card{grid-template-columns:76px 1fr}
  .mini-deity{width:74px;height:108px}
  .ritual-choice-grid{grid-template-columns:1fr}
  .tier-head{align-items:flex-start;flex-direction:column}
  .tier-head > span{text-align:left}
  .offering-row{grid-template-columns:1fr}
  .row-meta{align-items:flex-start;text-align:left}
  .submitted-altar{min-height:360px}
  .submitted-meta{grid-template-columns:1fr}
  .wish-support-panel{align-items:flex-start;flex-direction:column}
  .admin-actions,.payment-actions{flex-direction:column}
}

@keyframes flameTip{
  0%,100%{transform:translateX(-50%) scale(1);opacity:.88}
  35%{transform:translateX(-50%) scale(.88,1.08);opacity:1}
  70%{transform:translateX(-50%) scale(1.08,.94);opacity:.82}
}

/* Guided wish journey */
.experience-page{background:#09090c;overflow-x:hidden}
.experience-page .topbar,.experience-page .footer{display:none}
.experience-page main{min-height:100svh}
.journey-shell{
  --journey-accent:#d6ad61;
  position:relative;
  min-height:100svh;
  overflow:hidden;
  background:#09090c;
  color:#f4efe7;
}
.journey-shell[data-theme="exam"]{--journey-accent:#d67b54}
.journey-shell[data-theme="love"]{--journey-accent:#d8889a}
.journey-shell[data-theme="wealth"]{--journey-accent:#d1a542}
.journey-shell[data-theme="health"]{--journey-accent:#69ad88}
.journey-shell[data-theme="newyear"]{--journey-accent:#d95e52}
.journey-shell[data-theme="memory"]{--journey-accent:#8992bd}
.journey-backdrop{position:absolute;inset:0 0 0 46%;pointer-events:none}
.journey-backdrop:after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,#09090c 0%,rgba(9,9,12,.5) 34%,rgba(9,9,12,.12) 72%,rgba(9,9,12,.42) 100%);
}
.journey-backdrop img{width:100%;height:100%;object-fit:cover;object-position:center 18%;opacity:.7;transition:opacity .5s ease}
.journey-vignette{position:absolute;inset:0;box-shadow:inset 0 0 150px 60px rgba(0,0,0,.56)}
.journey-lamp{position:absolute;right:10%;bottom:8%;z-index:2;width:48px;height:74px;border:1px solid rgba(232,189,102,.34);border-radius:24px 24px 8px 8px;background:rgba(83,43,22,.5);box-shadow:0 0 70px rgba(224,154,65,.26)}
.journey-lamp span{position:absolute;left:50%;bottom:17px;width:12px;height:28px;border-radius:50% 50% 45% 45%;background:#ffd983;transform:translateX(-50%);filter:drop-shadow(0 0 12px #f4a344);animation:journeyFlame 2.6s ease-in-out infinite}
.journey-header{position:absolute;z-index:5;top:0;left:0;right:0;display:grid;grid-template-columns:180px minmax(180px,420px) 48px;align-items:center;justify-content:space-between;gap:28px;padding:24px 4vw}
.journey-brand{display:flex;align-items:center;gap:10px;color:#f4efe7;text-decoration:none;font-weight:800}
.journey-brand{grid-column:1}
.journey-brand img{width:30px;height:30px}
.journey-progress{display:grid;gap:8px;color:rgba(244,239,231,.72);font-size:12px;text-align:center}
.journey-progress{grid-column:2}
.journey-progress[hidden]{display:none}
.journey-progress i{display:block;height:2px;background:rgba(255,255,255,.12);overflow:hidden}
.journey-progress b{display:block;width:0;height:100%;background:var(--journey-accent);transition:width .4s ease}
.journey-close{display:grid;place-items:center;width:42px;height:42px;border:1px solid rgba(255,255,255,.14);border-radius:50%;color:#f4efe7;text-decoration:none;font-size:28px;font-weight:300}
.journey-close{grid-column:3}
.journey-form{box-sizing:border-box;position:relative;z-index:3;width:58%;min-height:100svh;padding:108px 5vw 76px;display:flex;align-items:center}
.journey-step{box-sizing:border-box;display:none;width:min(720px,100%);margin:0 auto;overflow-wrap:anywhere;animation:journeyReveal .48s ease both}
.journey-step.is-active{display:flex;flex-direction:column;align-items:flex-start}
.journey-step h1{font-size:54px;line-height:1.15;margin:0 0 22px;max-width:660px;font-weight:700}
.journey-step h2{font-size:34px;line-height:1.3;margin:0 0 14px;max-width:680px}
.journey-step>p:not(.journey-kicker){max-width:640px;margin:0 0 26px;color:rgba(244,239,231,.66);line-height:1.85;font-size:16px}
.journey-step h1,.journey-step h2,.journey-step>p{box-sizing:border-box;width:100%}
.journey-kicker{margin:0 0 14px;color:var(--journey-accent);font-size:13px;font-weight:800}
.journey-primary{min-height:50px;padding:0 24px;border:1px solid color-mix(in srgb,var(--journey-accent) 70%,white);border-radius:6px;background:var(--journey-accent);color:#15110d;font:inherit;font-weight:900;cursor:pointer}
.journey-quiet-link{margin-top:18px;color:rgba(244,239,231,.58);font-size:13px}
.journey-choice-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:11px;width:100%;max-height:55vh;overflow-y:auto;padding:2px 8px 2px 2px}
.journey-choice{display:flex;align-items:center;gap:13px;min-height:86px;padding:14px 16px;border:1px solid rgba(255,255,255,.13);border-radius:7px;background:rgba(13,13,18,.66);color:#f4efe7;text-align:left;font:inherit;cursor:pointer;transition:border-color .2s ease,background .2s ease,transform .2s ease}
.journey-choice:hover,.journey-choice:focus-visible{border-color:color-mix(in srgb,var(--journey-accent) 72%,transparent);background:rgba(255,255,255,.07);transform:translateY(-1px)}
.journey-choice.is-selected{border-color:var(--journey-accent);background:color-mix(in srgb,var(--journey-accent) 15%,#111116)}
.journey-choice>span:last-child{display:grid;gap:5px}
.journey-choice strong{font-size:16px;line-height:1.35}
.journey-choice small{color:rgba(244,239,231,.55);line-height:1.45;font-size:12px}
.journey-choice-mark{display:grid;place-items:center;flex:0 0 42px;width:42px;height:58px;border:1px solid color-mix(in srgb,var(--journey-accent) 45%,transparent);border-radius:21px 21px 6px 6px;color:var(--journey-accent);font-family:serif;font-weight:800}
.journey-back{position:absolute;z-index:5;left:5vw;bottom:28px;border:0;background:transparent;color:rgba(244,239,231,.58);font:inherit;cursor:pointer}
.journey-fields{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;width:100%}
.journey-fields label{display:grid;gap:8px;color:rgba(244,239,231,.84);font-size:13px}
.journey-fields label:last-child{grid-column:1/-1}
.journey-fields small{color:rgba(244,239,231,.45);font-weight:400}
.journey-fields input,.journey-fields textarea{background:rgba(7,7,10,.62);border-color:rgba(255,255,255,.15)}
.journey-fields textarea{min-height:88px}
.journey-visibility{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;width:100%;margin:18px 0;padding:0;border:0}
.journey-visibility legend{grid-column:1/-1;margin-bottom:9px;color:rgba(244,239,231,.78);font-weight:800}
.journey-visibility label{position:relative;display:block;cursor:pointer}
.journey-visibility input{position:absolute;opacity:0;pointer-events:none}
.journey-visibility span{display:grid;gap:4px;min-height:76px;padding:13px;border:1px solid rgba(255,255,255,.13);border-radius:7px;background:rgba(13,13,18,.66)}
.journey-visibility input:checked+span{border-color:var(--journey-accent);background:color-mix(in srgb,var(--journey-accent) 14%,#111116)}
.journey-visibility small{color:rgba(244,239,231,.52);line-height:1.5}
.journey-sealing{position:fixed;z-index:30;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;background:rgba(5,5,7,.96);color:#f4efe7}
.journey-sealing[hidden]{display:none}
.journey-sealing p{margin:18px 0 8px;color:#d6ad61;font-size:15px}
.journey-sealing strong{font-size:26px}
.sealing-flame{width:24px;height:58px;border-radius:50% 50% 44% 44%;background:#ffd983;box-shadow:0 0 80px 24px rgba(232,157,67,.28);animation:journeyFlame 1.5s ease-in-out infinite}

/* Private and shared reflections */
.result-hero{position:relative;display:grid;grid-template-columns:minmax(340px,.85fr) minmax(0,1.15fr);min-height:620px;overflow:hidden;background:#0b0b0f}
.result-hero:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(8,8,11,.08),rgba(8,8,11,.68) 48%,#0b0b0f 76%);pointer-events:none}
.result-deity{min-height:620px}
.result-deity img{width:100%;height:100%;object-fit:cover;object-position:center 12%}
.result-hero-copy{position:relative;z-index:2;align-self:center;max-width:700px;padding:70px 6vw 70px 3vw}
.result-private-mark{display:inline-flex;margin-bottom:20px;padding:7px 10px;border:1px solid rgba(232,189,102,.3);border-radius:999px;color:#d9b56f;font-size:12px}
.result-hero-copy h1{font-size:46px;line-height:1.22;margin-bottom:20px}
.result-hero-copy>p{color:rgba(244,239,231,.72);font-size:17px;line-height:1.9}
.result-signature{display:flex;gap:18px;margin-top:26px;color:rgba(244,239,231,.5);font-size:13px}
.result-body{max-width:1120px;margin:0 auto;padding:56px 24px 74px}
.result-facts{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1px;margin-bottom:42px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.1)}
.result-facts div{padding:17px;background:#121218}
.result-facts span{display:block;margin-bottom:6px;color:var(--muted);font-size:12px}
.result-facts strong{font-size:16px}
.result-section{padding:28px 0;border-top:1px solid rgba(255,255,255,.1)}
.result-section h2{font-size:26px;margin-bottom:12px}
.result-section>p:not(.eyebrow){color:rgba(244,239,231,.72);line-height:1.9}
.result-vow blockquote{margin:10px 0 0;padding:0;border:0;color:#f4efe7;font-family:serif;font-size:22px;line-height:2}
.result-two-column{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:44px}
.result-action{border-top-color:rgba(105,173,136,.34)}
.result-prayer{display:grid;grid-template-columns:190px 1fr;gap:34px;align-items:center;margin:30px 0 54px;padding:28px;border:1px solid rgba(232,189,102,.22);border-radius:8px;background:rgba(232,189,102,.045)}
.result-prayer div{display:grid;gap:7px;text-align:center;color:#d9b56f}
.result-prayer small{color:var(--muted)}
.result-prayer p{margin:0;border-left:1px solid rgba(232,189,102,.2);padding-left:32px;line-height:1.9;color:rgba(244,239,231,.82)}
.share-result-section,.result-offerings{margin-top:52px}
.compact-head{margin-bottom:20px}
.share-card{display:grid;gap:26px;min-height:290px;padding:34px;border:1px solid rgba(232,189,102,.28);border-radius:8px;background:#17141a;color:#f4efe7}
.share-card-brand{color:#d9b56f;font-size:13px}
.share-card>strong{max-width:720px;font-family:serif;font-size:28px;line-height:1.75}
.share-card>div{display:flex;gap:18px;color:rgba(244,239,231,.55);font-size:13px}
.share-actions,.result-footer-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}
.share-feedback{min-height:22px;color:#69ad88;font-size:13px}
.result-offering-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}
.result-offering{display:flex;flex-direction:column;min-height:285px;padding:20px;border:1px solid rgba(255,255,255,.12);border-radius:8px;background:rgba(255,255,255,.035);color:#f4efe7}
.result-offering.featured{border-color:rgba(232,189,102,.4);background:rgba(232,189,102,.065)}
.result-offering>span{color:#d9b56f;font-size:12px}
.result-offering>strong{margin:10px 0;font-size:19px}
.result-offering>p{color:var(--muted);font-size:13px;line-height:1.7}
.result-offering>em{margin:auto 0 16px;color:#f4efe7;font-style:normal;font-size:22px;font-weight:800}
.result-offering.is-current{opacity:.72}
.result-order-state{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:22px;border:1px solid rgba(232,189,102,.28);border-radius:8px;background:rgba(232,189,102,.055)}
.result-order-state div{display:grid;gap:6px}
.result-order-state span{color:var(--muted);font-size:13px}
.result-order-state strong{font-size:18px}
.result-disclaimer{margin-top:34px;color:rgba(185,176,167,.55);font-size:12px;line-height:1.7}
.shared-result-page{background:#09090c}
.shared-result-page .footer{display:none}
.shared-result-page .nav{display:none}
.shared-wish-stage{position:relative;display:grid;grid-template-columns:1fr 1fr;min-height:calc(100svh - 78px);overflow:hidden;background:#09090c}
.shared-wish-stage:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(9,9,12,.12),#09090c 65%);pointer-events:none}
.shared-deity{min-height:680px}
.shared-deity img{width:100%;height:100%;object-fit:cover;object-position:center 12%}
.shared-wish-card{box-sizing:border-box;position:relative;z-index:2;align-self:center;display:flex;flex-direction:column;align-items:flex-start;gap:18px;width:100%;max-width:680px;padding:54px 7vw 54px 3vw;overflow-wrap:anywhere}
.shared-wish-card h1{font-family:serif;font-size:38px;line-height:1.55}
.shared-wish-card blockquote{margin:0;padding:20px 0;border:0;border-top:1px solid rgba(255,255,255,.12);color:rgba(244,239,231,.68);line-height:1.9}
.shared-wish-meta{display:flex;gap:16px;margin-bottom:12px;color:#d9b56f;font-size:13px}

@keyframes journeyReveal{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:translateY(0)}}
@keyframes journeyFlame{0%,100%{transform:translateX(-50%) scale(1) rotate(-2deg)}50%{transform:translateX(-50%) scale(.9,1.08) rotate(3deg)}}

@media (max-width:900px){
  .journey-backdrop{inset:0;opacity:.42}
  .journey-backdrop:after{background:rgba(7,7,10,.68)}
  .journey-header{box-sizing:border-box;position:fixed;grid-template-columns:38px minmax(100px,1fr) 38px;gap:8px;padding:15px 16px;background:rgba(9,9,12,.76);backdrop-filter:blur(12px)}
  .journey-brand span{display:none}
  .journey-form{width:100%;max-width:100vw;padding:96px 18px 72px}
  .journey-step{width:calc(100vw - 36px);max-width:680px}
  .journey-step>p:not(.journey-kicker){max-width:calc(100vw - 36px);word-break:break-all}
  .journey-step h1{font-size:40px}
  .journey-step h2{font-size:28px}
  .journey-choice-grid{max-height:none}
  .journey-lamp{right:6%;bottom:4%;opacity:.7}
  .journey-close{position:fixed;top:15px;right:16px;width:36px;height:36px;font-size:24px}
  .result-hero,.shared-wish-stage{grid-template-columns:1fr}
  .result-deity,.shared-deity{position:absolute;inset:0;min-height:0;opacity:.34}
  .result-hero:after,.shared-wish-stage:after{background:rgba(8,8,11,.62)}
  .result-hero-copy,.shared-wish-card{box-sizing:border-box;width:100%;padding:100px 24px 60px;max-width:760px}
  .result-hero-copy h1{font-size:38px}
  .result-facts,.result-offering-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:600px){
  .journey-choice-grid,.journey-fields,.journey-visibility{grid-template-columns:1fr}
  .journey-fields label:last-child{grid-column:auto}
  .journey-close{display:grid!important;position:fixed!important;z-index:100!important;top:15px!important;right:16px!important;left:auto!important}
  .journey-step>p:not(.journey-kicker){display:block;width:calc(100vw - 72px)!important;max-width:318px!important;word-break:break-all!important}
  .journey-step h1{font-size:34px}
  .journey-step h2{font-size:25px}
  .journey-choice{min-height:76px}
  .journey-choice-grid{gap:8px}
  .journey-progress span{display:none}
  .result-facts,.result-two-column,.result-offering-grid{grid-template-columns:1fr}
  .result-prayer{grid-template-columns:1fr;text-align:left}
  .result-order-state{align-items:flex-start;flex-direction:column}
  .result-prayer div{text-align:left}
  .result-prayer p{border-left:0;border-top:1px solid rgba(232,189,102,.2);padding:20px 0 0}
  .result-vow blockquote{font-size:19px}
  .share-card>strong{font-size:23px}
  .shared-wish-card h1{width:100%;font-size:26px;line-height:1.65;word-break:break-all}
}

/* First-visit wish entry */
.entry-gate-open{overflow:hidden}
.home-entry-gate{
  position:fixed;
  z-index:200;
  inset:0;
  display:grid;
  grid-template-columns:minmax(320px,.78fr) minmax(520px,1.22fr);
  min-height:100svh;
  overflow:hidden;
  background:#07070a;
  opacity:0;
  transition:opacity .25s ease;
}
.home-entry-gate[hidden]{display:none}
.home-entry-gate.is-visible{opacity:1}
.home-entry-backdrop{position:relative;min-height:100svh;overflow:hidden}
.home-entry-backdrop:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(6,6,9,.08),rgba(6,6,9,.88))}
.home-entry-backdrop img{width:100%;height:100%;object-fit:cover;object-position:center 18%;opacity:.78}
.home-entry-close{position:fixed;z-index:3;top:22px;right:24px;display:grid;place-items:center;width:42px;height:42px;border:1px solid rgba(255,255,255,.2);border-radius:50%;background:rgba(8,8,11,.55);color:#f4efe7;font-size:27px;cursor:pointer}
.home-entry-content{align-self:center;width:min(720px,calc(100% - 80px));margin:0 auto;padding:86px 0 50px;color:#f4efe7}
.home-entry-content h1{margin:0 0 12px;font-size:42px;line-height:1.3}
.home-entry-content>p:not(.eyebrow){margin:0 0 25px;color:rgba(244,239,231,.62)}
.home-entry-choices{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.home-entry-choices a{display:grid;gap:5px;min-height:84px;padding:15px;border:1px solid rgba(255,255,255,.13);border-radius:7px;background:rgba(255,255,255,.035);color:#f4efe7;text-decoration:none;transition:border-color .2s ease,background .2s ease,transform .2s ease}
.home-entry-choices a:hover,.home-entry-choices a:focus-visible{border-color:rgba(232,189,102,.58);background:rgba(232,189,102,.08);transform:translateY(-1px)}
.home-entry-choices strong{font-size:17px}
.home-entry-choices span{color:rgba(244,239,231,.52);font-size:13px}
.home-entry-later{margin-top:20px;padding:8px 0;border:0;background:transparent;color:rgba(244,239,231,.58);font:inherit;cursor:pointer}

@media (max-width:800px){
  .home-entry-gate{display:block;overflow-y:auto}
  .home-entry-backdrop{position:fixed;inset:0;min-height:0;opacity:.35}
  .home-entry-backdrop:after{background:rgba(6,6,9,.62)}
  .home-entry-content{position:relative;z-index:2;box-sizing:border-box;width:100%;max-width:620px;padding:88px 18px 40px}
  .home-entry-content h1{font-size:31px}
  .home-entry-choices{grid-template-columns:1fr}
  .home-entry-choices a{min-height:68px;padding:13px}
  .home-entry-close{top:16px;right:16px;width:38px;height:38px}
}
@keyframes flameGlow{
  0%,100%{transform:scale(1);opacity:.86}
  35%{transform:scale(.88,1.1);opacity:1}
  70%{transform:scale(1.08,.92);opacity:.78}
}
@keyframes lampGlow{
  0%,100%{opacity:.72;box-shadow:0 0 10px rgba(232,189,102,.18)}
  50%{opacity:1;box-shadow:0 0 18px rgba(232,189,102,.44)}
}
@keyframes smokeRise{
  0%{transform:translate(-50%,24px) scale(.75);opacity:0}
  22%{opacity:.38}
  100%{transform:translate(-50%,-84px) scale(1.28);opacity:0}
}
@keyframes lanternSway{
  0%,100%{transform:rotate(-2deg) translateY(0)}
  50%{transform:rotate(2deg) translateY(6px)}
}
@keyframes veilRise{
  0%{transform:translateY(0) scale(.8);opacity:0}
  20%{opacity:.45}
  100%{transform:translateY(-120%) scale(1.3);opacity:0}
}
