/**
 * MANIKA KAUR — THE DIGITAL DARBAR
 * Homepage concept elements (V1–V10) — presentation layer
 * Every concept renders inside .mk-concept and is scoped to it.
 */

/* ── full-viewport section when a concept is present ─────────────── */
#swup > .ht-section.mk-concept-section { padding: 0 !important; background: #0C0A12 !important; }
#swup > .ht-section.mk-concept-section > div { max-width: none !important; padding-left: 0 !important; padding-right: 0 !important; }

/* ── concept shell ───────────────────────────────────────────────── */
.mk-concept {
    position: relative; width: 100%; min-height: 100vh; min-height: 100svh;
    overflow: hidden; isolation: isolate;
    background: #0C0A12; color: #F5F1E8;
    font-family: 'Montserrat', system-ui, sans-serif; font-weight: 300;
}
.mk-concept ::selection { background: #C9A227; color: #0C0A12; }
.mk-concept-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.mk-concept-canvas.mk-clickable { cursor: pointer; }

/* UI layer (text over the canvas) */
.mkc-ui { position: absolute; inset: 0; z-index: 10; display: flex; flex-direction: column; pointer-events: none; transition: opacity 1.2s ease, filter 1.2s ease; }
.mkc-ui a, .mkc-ui button { pointer-events: auto; }
.mkc-center { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 6vw; }
.mkc-kicker { font-size: 0.6rem; letter-spacing: 0.5em; text-transform: uppercase; color: #C9A227; margin-bottom: 1.8rem; }
.mkc-title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-size: clamp(2.8rem, 7.6vw, 6.6rem); line-height: 1.04; text-shadow: 0 4px 60px rgba(12,10,18,0.9); }
.mkc-title i { color: #C9A227; }
.mkc-sub { margin-top: 1.7rem; font-size: 0.76rem; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.72; max-width: 560px; line-height: 2.1; }
.mkc-hintline { margin-top: 2.8rem; font-size: 0.58rem; letter-spacing: 0.42em; text-transform: uppercase; color: rgba(201,162,39,0.85); }
.mkc-rise { opacity: 0; transform: translateY(26px); animation: mkcRise 1.6s cubic-bezier(0.16,1,0.3,1) forwards; }
.mkc-rise.d1 { animation-delay: 0.35s; } .mkc-rise.d2 { animation-delay: 0.65s; } .mkc-rise.d3 { animation-delay: 0.95s; }
@keyframes mkcRise { to { opacity: 1; transform: translateY(0); } }

/* Communion reveal (hold) */
.mkc-communion {
    position: absolute; inset: 0; z-index: 5; display: flex; flex-direction: column; gap: 1.2rem;
    align-items: center; justify-content: center; text-align: center; padding: 0 6vw;
    opacity: 0; pointer-events: none; transition: opacity 1.6s cubic-bezier(0.16,1,0.3,1);
}
.mkc-communion-pa { font-family: 'Noto Serif Gurmukhi', serif; font-size: clamp(2.2rem, 5.6vw, 4.4rem); color: #F5F1E8; text-shadow: 0 0 46px rgba(201,162,39,0.55); transform: scale(0.94); transition: transform 3.4s cubic-bezier(0.16,1,0.3,1); }
.mkc-communion-en { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: clamp(1.05rem, 2.2vw, 1.6rem); color: #C9A227; max-width: 720px; line-height: 1.8; }
.mk-concept.is-communing .mkc-communion { opacity: 1; }
.mk-concept.is-communing .mkc-communion-pa { transform: scale(1); }
.mk-concept.is-communing .mkc-ui { opacity: 0.08; filter: blur(14px); pointer-events: none; }

/* Footers */
.mkc-note { position: absolute; left: 3.2rem; bottom: 1.3rem; z-index: 11; font-size: 0.54rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(245,241,232,0.4); }
.mkc-holdhint { position: absolute; right: 3.2rem; bottom: 1.3rem; z-index: 11; font-size: 0.54rem; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(201,162,39,0.75); }

/* ══ V1 · The One String ═══════════════════════════════════════ */
.mk-concept--onestring .mkc-stage { flex: 1; position: relative; }
.mk-concept--onestring .mkc-page {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -46%);
    width: 100%; max-width: 1100px; padding: 0 6vw;
    opacity: 0; visibility: hidden; transition: all 0.9s cubic-bezier(0.16,1,0.3,1); pointer-events: none;
}
.mk-concept--onestring .mkc-page.is-active { opacity: 1; visibility: visible; transform: translate(-50%, -50%); pointer-events: auto; }
.mk-concept--onestring .mkc-navpages { display: flex; flex-direction: column; gap: 0.8rem; align-items: flex-end; padding: 2.6rem 3.4rem 0 0; }
.mk-concept--onestring .mkc-navbtn {
    background: none; border: none; color: #F5F1E8; font-family: inherit; cursor: pointer;
    font-size: 0.64rem; letter-spacing: 0.32em; text-transform: uppercase; opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.mk-concept--onestring .mkc-navbtn:hover, .mk-concept--onestring .mkc-navbtn.is-active { opacity: 1; color: #C9A227; transform: translateX(-8px); }
.mk-concept--onestring .mkc-track { display: flex; justify-content: space-between; align-items: baseline; gap: 2rem; padding: 1.1rem 0; border-bottom: 1px solid rgba(245,241,232,0.1); transition: all 0.4s cubic-bezier(0.16,1,0.3,1); cursor: pointer; }
.mk-concept--onestring .mkc-track:hover { border-bottom-color: #C9A227; padding-left: 1.4rem; }
.mk-concept--onestring .mkc-track h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; font-size: clamp(1.6rem, 3.4vw, 2.6rem); transition: color 0.4s; }
.mk-concept--onestring .mkc-track:hover h3 { color: #C9A227; font-style: italic; }
.mk-concept--onestring .mkc-track p { font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.55; text-align: right; white-space: nowrap; }
.mk-concept--onestring .mkc-tracks-scroll { max-height: 52vh; overflow-y: auto; padding-right: 0.8rem; }
.mk-concept--onestring .mkc-tracks-scroll::-webkit-scrollbar { width: 2px; }
.mk-concept--onestring .mkc-tracks-scroll::-webkit-scrollbar-thumb { background: #C9A227; }
.mk-concept--onestring .mkc-sevaline { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: clamp(1.6rem, 3.6vw, 2.8rem); color: #C9A227; margin-bottom: 3.4rem; }
.mk-concept--onestring .mkc-stats { display: flex; justify-content: center; gap: clamp(2rem, 8vw, 6rem); flex-wrap: wrap; }
.mk-concept--onestring .mkc-stat h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-size: clamp(2.6rem, 6vw, 4.4rem); text-shadow: 0 0 34px rgba(201,162,39,0.28); }
.mk-concept--onestring .mkc-stat p { margin-top: 0.7rem; font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.65; }
.mk-concept--onestring .mkc-guide { position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.7rem; opacity: 0.6; z-index: 11; }
.mk-concept--onestring .mkc-guidedot { width: 4px; height: 4px; border-radius: 50%; background: #C9A227; animation: mkcPulseDot 2.4s infinite; }
.mk-concept--onestring .mkc-guidetext { font-size: 0.56rem; letter-spacing: 0.44em; text-transform: uppercase; }
@keyframes mkcPulseDot { 0% { box-shadow: 0 0 0 0 rgba(201,162,39,0.7); } 70% { box-shadow: 0 0 0 14px rgba(201,162,39,0); } 100% { box-shadow: 0 0 0 0 rgba(201,162,39,0); } }

/* ══ V2 · The Nine Doors ═══════════════════════════════════════ */
.mk-concept--ninedoors .mkc-scene { position: absolute; inset: 0; perspective: 1100px; overflow: hidden; }
.mk-concept--ninedoors .mkc-tunnel { position: absolute; inset: 0; transform-style: preserve-3d; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.mk-concept--ninedoors .mkc-arch {
    position: absolute; left: 50%; top: 50%;
    width: min(74vw, 860px); height: min(88vh, 900px);
    border: 1px solid rgba(201,162,39,0.5);
    border-radius: 999px 999px 6px 6px;
    box-shadow: 0 0 60px rgba(201,162,39,0.06), inset 0 0 90px rgba(12,10,18,0.9);
    transition: border-color 0.7s ease, box-shadow 0.7s ease;
}
.mk-concept--ninedoors .mkc-arch.is-lit { border-color: #D4AF37; box-shadow: 0 0 80px rgba(212,175,55,0.28), inset 0 0 120px rgba(201,162,39,0.12); }
.mk-concept--ninedoors .mkc-sanctum {
    position: absolute; left: 50%; top: 50%; width: 260px; height: 340px;
    border-radius: 999px 999px 0 0;
    background: radial-gradient(ellipse at 50% 78%, rgba(212,175,55,0.5), rgba(201,162,39,0.12) 55%, transparent 75%);
    filter: blur(6px); transition: opacity 1.6s ease, filter 1.6s ease;
}
.mk-concept--ninedoors.is-communing .mkc-sanctum { filter: blur(14px); }
.mk-concept--ninedoors .mkc-doors { display: flex; justify-content: center; gap: clamp(0.6rem, 2.4vw, 2rem); flex-wrap: wrap; padding: 0 4vw 3rem; }
.mk-concept--ninedoors .mkc-door {
    background: none; border: none; cursor: pointer; color: #F5F1E8; text-decoration: none;
    font-family: inherit; font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase;
    opacity: 0.45; padding: 0.5rem 0.2rem; position: relative;
    transition: opacity 0.4s, color 0.4s;
}
.mk-concept--ninedoors .mkc-door::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
    background: #C9A227; transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.mk-concept--ninedoors .mkc-door:hover, .mk-concept--ninedoors .mkc-door.is-active { opacity: 1; color: #D4AF37; }
.mk-concept--ninedoors .mkc-door:hover::after, .mk-concept--ninedoors .mkc-door.is-active::after { transform: scaleX(1); }

/* ══ V3 · Sangat ═══════════════════════════════════════════════ */
.mk-concept--sangat .mkc-caption { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; padding-bottom: 4.6rem; text-align: center; }
.mk-concept--sangat .mkc-modes { display: flex; justify-content: center; gap: 0.6rem; padding-bottom: 3.4rem; }
.mk-concept--sangat .mkc-modebtn {
    background: none; border: 1px solid rgba(245,241,232,0.18); color: #F5F1E8; cursor: pointer;
    font-family: inherit; font-size: 0.56rem; letter-spacing: 0.32em; text-transform: uppercase;
    padding: 0.75rem 1.4rem; opacity: 0.65; transition: all 0.45s cubic-bezier(0.16,1,0.3,1);
}
.mk-concept--sangat .mkc-modebtn:hover { opacity: 1; border-color: #C9A227; }
.mk-concept--sangat .mkc-modebtn.is-active { opacity: 1; border-color: #C9A227; color: #C9A227; box-shadow: 0 0 26px rgba(201,162,39,0.16); }

/* ══ V4 · Amrit Vela (scroll journey) ══════════════════════════ */
.mk-concept--amritvela { min-height: 0; overflow: visible; background: #05060F; }
.mk-concept--amritvela .mkc-sky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; z-index: 0; }
.mk-concept--amritvela .mkc-sky .mk-concept-canvas { position: absolute; inset: 0; }
.mk-concept--amritvela .mkc-dawn {
    position: absolute; inset: 0; opacity: 0;
    background:
        radial-gradient(ellipse 120% 55% at 50% 108%, rgba(217,130,43,0.55), rgba(201,162,39,0.22) 42%, transparent 72%),
        linear-gradient(to top, rgba(43,49,96,0.5), transparent 60%);
}
.mk-concept--amritvela .mkc-glow {
    position: absolute; left: 0; right: 0; bottom: -12vh; height: 34vh; opacity: 0;
    background: radial-gradient(ellipse 70% 90% at 50% 100%, rgba(212,175,55,0.5), transparent 70%);
    filter: blur(22px);
}
.mk-concept--amritvela .mkc-skyline { position: absolute; left: 0; right: 0; bottom: 0; transform: translateY(46%); }
.mk-concept--amritvela .mkc-skyline svg { display: block; width: 100%; height: auto; }
.mk-concept--amritvela .mkc-jyot {
    position: absolute; left: 50%; bottom: 24vh; width: 5px; height: 5px; border-radius: 50%;
    background: #D4AF37;
    box-shadow: 0 0 18px 6px rgba(212,175,55,0.65), 0 0 70px 26px rgba(201,162,39,0.28);
    animation: mkcFlicker 3.2s ease-in-out infinite;
}
@keyframes mkcFlicker { 0%,100% { opacity: 0.85; transform: scale(1); } 38% { opacity: 1; transform: scale(1.25); } 72% { opacity: 0.7; transform: scale(0.92); } }
.mk-concept--amritvela .mkc-stages { position: relative; z-index: 2; margin-top: -100vh; }
.mk-concept--amritvela .mkc-stage { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 6vw; }
.mk-concept--amritvela .mkc-clock { font-size: 0.62rem; letter-spacing: 0.44em; text-transform: uppercase; color: rgba(245,241,232,0.5); margin-bottom: 1.4rem; }
.mk-concept--amritvela .mkc-stage h1, .mk-concept--amritvela .mkc-stage h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; line-height: 1.05; }
.mk-concept--amritvela .mkc-stage h1 { font-size: clamp(3rem, 8.6vw, 7.4rem); }
.mk-concept--amritvela .mkc-stage h2 { font-size: clamp(2.2rem, 5.6vw, 4.6rem); max-width: 900px; }
.mk-concept--amritvela .mkc-stage h1 i, .mk-concept--amritvela .mkc-stage h2 i { color: #C9A227; }
.mk-concept--amritvela .mkc-gurmukhi { font-family: 'Noto Serif Gurmukhi', serif; font-size: clamp(1.1rem, 2.4vw, 1.8rem); color: #C9A227; opacity: 0.9; margin-top: 2.4rem; line-height: 1.9; }
.mk-concept--amritvela .mkc-press blockquote { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: clamp(1.5rem, 3.4vw, 2.6rem); line-height: 1.4; max-width: 760px; }
.mk-concept--amritvela .mkc-press blockquote i { color: #C9A227; }
.mk-concept--amritvela .mkc-press cite { display: block; margin-top: 1.6rem; font-style: normal; font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(245,241,232,0.55); }
.mk-concept--amritvela .mkc-enter {
    display: inline-block; margin-top: 2.8rem; padding: 1.05rem 3rem; border: 1px solid #C9A227;
    color: #C9A227; font-size: 0.64rem; letter-spacing: 0.42em; text-transform: uppercase;
    text-decoration: none; transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.mk-concept--amritvela .mkc-enter:hover { background: rgba(201,162,39,0.12); box-shadow: 0 0 44px rgba(201,162,39,0.25); letter-spacing: 0.5em; }
.mk-concept--amritvela .mkc-reveal { opacity: 0; transform: translateY(34px); transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1), transform 1.1s cubic-bezier(0.16,1,0.3,1); }
.mk-concept--amritvela .mkc-reveal.is-visible { opacity: 1; transform: translateY(0); }
.mk-concept--amritvela .mkc-reveal[data-d="1"] { transition-delay: 0.15s; }
.mk-concept--amritvela .mkc-reveal[data-d="2"] { transition-delay: 0.3s; }
.mk-concept--amritvela .mkc-reveal[data-d="3"] { transition-delay: 0.45s; }
.mk-concept--amritvela .mkc-cue { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.7rem; opacity: 0.7; transition: opacity 0.6s; }
.mk-concept--amritvela .mkc-cue.is-hidden { opacity: 0; }
.mk-concept--amritvela .mkc-cueline { width: 1px; height: 48px; background: rgba(245,241,232,0.2); position: relative; overflow: hidden; }
.mk-concept--amritvela .mkc-cueline::after { content: ''; position: absolute; inset: 0; background: #C9A227; transform: translateY(-100%); animation: mkcDrop 2.6s cubic-bezier(0.16,1,0.3,1) infinite; }
@keyframes mkcDrop { 0% { transform: translateY(-100%); } 55% { transform: translateY(0); } 100% { transform: translateY(102%); } }
.mk-concept--amritvela .mkc-cuetext { font-size: 0.54rem; letter-spacing: 0.44em; text-transform: uppercase; }

/* ══ V5 · The Constellation ════════════════════════════════════ */
.mk-concept--constellation .mkc-hero { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding-bottom: 4.4rem; text-align: center; }
.mk-concept--constellation .mkc-whisper {
    position: absolute; z-index: 12; pointer-events: none; opacity: 0;
    transform: translate(-50%, calc(-100% - 22px)); text-align: center;
    transition: opacity 0.35s ease; max-width: 300px;
}
.mk-concept--constellation .mkc-whisper.is-show { opacity: 1; }
.mk-concept--constellation .mkc-wtitle { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 1.5rem; color: #D4AF37; }
.mk-concept--constellation .mkc-walbum { margin-top: 0.35rem; font-size: 0.54rem; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(245,241,232,0.6); }
.mk-concept--constellation .mkc-wline { margin: 0.7rem auto 0; width: 40px; height: 1px; background: rgba(201,162,39,0.3); }
.mk-concept--constellation .mkc-wmeaning { margin-top: 0.7rem; font-size: 0.72rem; line-height: 1.8; color: rgba(245,241,232,0.72); font-weight: 300; }
.mk-concept--constellation.is-communing .mkc-whisper { opacity: 0 !important; }

/* ══ V6 · The Word Becomes Water ═══════════════════════════════ */
.mk-concept--wordwater .mkc-mantra {
    font-family: 'Noto Serif Gurmukhi', serif; font-weight: 400; line-height: 1.5;
    font-size: clamp(3.4rem, 10vw, 8rem); color: #F5F1E8;
    text-shadow: 0 0 44px rgba(201,162,39,0.4);
}
.mk-concept--wordwater .mkc-mantra span { display: inline-block; opacity: 0; transform: translateY(24px) scale(0.96); filter: blur(6px); transition: all 1.4s cubic-bezier(0.16,1,0.3,1); }
.mk-concept--wordwater .mkc-mantra span.is-in { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
.mk-concept--wordwater .mkc-translation { margin-top: 2.6rem; font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: clamp(1.05rem, 2.4vw, 1.7rem); color: #C9A227; min-height: 2.2em; letter-spacing: 0.04em; }
.mk-concept--wordwater .mkc-caret { display: inline-block; width: 1px; height: 1em; background: #C9A227; vertical-align: -0.15em; margin-left: 3px; animation: mkcBlink 1.1s steps(1) infinite; }
@keyframes mkcBlink { 50% { opacity: 0; } }

/* ══ V7 · The Five Rivers ══════════════════════════════════════ */
.mk-concept--fiverivers .mkc-virtue { position: absolute; left: 50%; transform: translateX(-50%); z-index: 12; text-align: center; opacity: 0; transition: opacity 0.6s ease, top 0.7s cubic-bezier(0.16,1,0.3,1); pointer-events: none; }
.mk-concept--fiverivers .mkc-virtue.is-on { opacity: 1; }
.mk-concept--fiverivers .mkc-virtuegu { font-family: 'Noto Serif Gurmukhi', serif; font-size: 2rem; color: #D4AF37; text-shadow: 0 0 30px rgba(212,175,55,0.5); }
.mk-concept--fiverivers .mkc-virtueen { margin-top: 0.4rem; font-size: 0.58rem; letter-spacing: 0.44em; text-transform: uppercase; color: rgba(245,241,232,0.7); }
.mk-concept--fiverivers.is-communing .mkc-virtue { opacity: 0 !important; }

/* ══ V8 · Saas Saas, The Breath ════════════════════════════════ */
.mk-concept--breath .mkc-orb {
    position: relative; width: 34vmin; height: 34vmin; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: radial-gradient(circle at 50% 42%, rgba(212,175,55,0.22), rgba(201,162,39,0.06) 60%, transparent 72%);
    border: 1px solid rgba(201,162,39,0.5);
    box-shadow: 0 0 90px rgba(201,162,39,0.18), inset 0 0 60px rgba(201,162,39,0.1);
    transform: scale(0.72);
}
.mk-concept--breath .mkc-orb::before { content: ''; position: absolute; inset: -18px; border-radius: 50%; border: 1px solid rgba(201,162,39,0.18); }
.mk-concept--breath .mkc-phaseword { font-size: 0.66rem; letter-spacing: 0.52em; text-transform: uppercase; color: #C9A227; transition: opacity 0.6s ease; }
.mk-concept--breath .mkc-breathcount { margin-top: 0.9rem; font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 0.95rem; color: rgba(245,241,232,0.5); }
.mk-concept--breath .mkc-above { position: absolute; top: 15vh; left: 0; right: 0; text-align: center; pointer-events: none; }
.mk-concept--breath .mkc-abovegu { font-family: 'Noto Serif Gurmukhi', serif; font-size: clamp(1.3rem, 3vw, 2rem); color: #D4AF37; text-shadow: 0 0 30px rgba(212,175,55,0.45); }
.mk-concept--breath .mkc-aboveen { margin-top: 0.8rem; font-size: 0.6rem; letter-spacing: 0.44em; text-transform: uppercase; color: rgba(245,241,232,0.5); }
.mk-concept--breath .mkc-bloom { position: absolute; bottom: 18vh; left: 0; right: 0; text-align: center; opacity: 0; transition: opacity 2.4s cubic-bezier(0.16,1,0.3,1); pointer-events: none; }
.mk-concept--breath .mkc-bloom.is-on { opacity: 1; }
.mk-concept--breath .mkc-bloomgu { font-family: 'Noto Serif Gurmukhi', serif; font-size: 1.5rem; color: #C9A227; }
.mk-concept--breath .mkc-bloomen { margin-top: 0.6rem; font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 1.05rem; color: rgba(245,241,232,0.7); }
.mk-concept--breath .mkc-below { position: absolute; bottom: 11vh; left: 0; right: 0; text-align: center; font-size: 0.6rem; letter-spacing: 0.42em; text-transform: uppercase; color: rgba(245,241,232,0.45); pointer-events: none; }

/* ══ V9 · Live Darbar, The Stage ═══════════════════════════════ */
.mk-concept--stage .mkc-center { padding-bottom: 22vh; }
.mk-concept--stage .mkc-liveflag { display: inline-flex; align-items: center; gap: 0.7rem; font-size: 0.58rem; letter-spacing: 0.5em; text-transform: uppercase; color: #C9A227; }
.mk-concept--stage .mkc-liveflag i { width: 6px; height: 6px; border-radius: 50%; background: #D4AF37; animation: mkcPulseLive 1.8s ease infinite; }
@keyframes mkcPulseLive { 50% { opacity: 0.25; } }
.mk-concept--stage .mkc-nowplaying { margin-top: 2rem; font-size: 0.72rem; letter-spacing: 0.26em; color: rgba(245,241,232,0.66); }
.mk-concept--stage .mkc-nowplaying b { font-weight: 400; color: #C9A227; }
.mk-concept--stage .mkc-trackmeta { color: rgba(245,241,232,0.4); }

/* ══ V10 · A Thousand Lamps ════════════════════════════════════ */
.mk-concept--lamps .mkc-lampcount { font-size: 0.56rem; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(212,175,55,0.85); position: absolute; top: 2.4rem; right: 3.2rem; z-index: 11; }
.mk-concept--lamps .mkc-hint { transition: opacity 1.4s ease; }
.mk-concept--lamps.mk-has-lamps .mkc-hint { opacity: 0 !important; }

/* ── reduced motion ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .mkc-rise { animation: none; opacity: 1; transform: none; }
    .mk-concept--onestring .mkc-guidedot,
    .mk-concept--stage .mkc-liveflag i { animation: none; }
    .mk-concept--amritvela .mkc-jyot, .mk-concept--amritvela .mkc-cueline::after { animation: none; }
    .mk-concept--amritvela .mkc-reveal { opacity: 1; transform: none; transition: none; }
    .mk-concept--wordwater .mkc-mantra span { opacity: 1; transform: none; filter: none; transition: none; }
    .mk-concept--wordwater .mkc-caret { animation: none; }
    .mk-concept--breath .mkc-orb { transform: scale(1); }
}

/* ══════════════════════════════════════════════════════════════════
   CONCEPT OPENERS — one-time threshold ritual (opener.js)
   Markup comes from the manika_opener builder element. The overlay is
   inert (display:none) until opener.js activates it, so no-JS visitors
   are never gated.
   ══════════════════════════════════════════════════════════════════ */
.mk-opener { display: none; }
.mk-opener.is-active {
    display: block; position: fixed; inset: 0; z-index: 9999;
    background: #0C0A12; color: #F5F1E8;
    touch-action: none; cursor: pointer;
}
.mk-opener .mko-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.mk-opener .mko-center {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 0 6vw;
    transition: opacity 0.6s ease;
}
.mk-opener .mko-pa {
    font-family: "Noto Serif Gurmukhi", serif; font-size: clamp(1.6rem, 3.4vw, 2.6rem);
    color: rgba(212,175,55,0.9); letter-spacing: 0.12em;
    text-shadow: 0 0 34px rgba(201,162,39,0.35);
    animation: mkoRise 1.2s var(--ease-out, cubic-bezier(0.22,0.61,0.36,1)) both;
}
.mk-opener .mko-en {
    margin-top: 1.1rem; font-family: "Montserrat", sans-serif;
    font-size: 0.6rem; letter-spacing: 0.44em; text-transform: uppercase;
    color: rgba(245,241,232,0.6);
    animation: mkoRise 1.2s 0.2s var(--ease-out, cubic-bezier(0.22,0.61,0.36,1)) both;
}
@keyframes mkoRise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.mk-opener .mko-hint {
    position: absolute; left: 50%; bottom: 11vh; transform: translateX(-50%);
    z-index: 2; pointer-events: none;
    font-size: 0.56rem; letter-spacing: 0.4em; text-transform: uppercase;
    color: rgba(212,175,55,0.85);
    animation: mkoHintPulse 2.6s ease infinite;
}
@keyframes mkoHintPulse { 50% { opacity: 0.3; } }
.mk-opener .mko-skip {
    position: absolute; top: 2rem; right: 2.6rem; z-index: 3;
    background: none; border: none; cursor: pointer;
    font-family: "Montserrat", sans-serif; font-size: 0.56rem;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: rgba(245,241,232,0.5); padding: 0.8rem 0.4rem;
    transition: color 0.3s ease;
}
.mk-opener .mko-skip:hover { color: #D4AF37; }
/* completion — the gold flash, then the veil lifts */
.mk-opener.is-done { cursor: default; }
.mk-opener.is-done .mko-center { opacity: 0; }
.mk-opener.is-done::after {
    content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.28), rgba(212,175,55,0) 62%);
    animation: mkoFlash 1.3s ease both;
}
@keyframes mkoFlash { 0% { opacity: 0; } 30% { opacity: 1; } 100% { opacity: 0; } }
.mk-opener.is-gone { opacity: 0; transition: opacity 0.65s ease; pointer-events: none; }
body.mk-opener-lock { overflow: hidden; }
/* the zero-height section that hosts the element in the builder */
.mk-opener-section { padding: 0 !important; }
@media (prefers-reduced-motion: reduce) {
    .mk-opener .mko-pa, .mk-opener .mko-en { animation: none; }
    .mk-opener .mko-hint { animation: none; }
    .mk-opener.is-done::after { animation: none; opacity: 0; }
    .mk-opener.is-gone { transition: none; }
}

/* ════════════════════════ BUILDER RITUALS ════════════════════════
   Shared look: dark canvas, gold light, starlight text. */

/* ── Ardas Wall ── */
.mk-ardas { max-width: 760px; margin: 0 auto; text-align: center; }
.mk-ardas-title {
    font-family: "Cormorant Garamond", Georgia, serif; font-weight: 300;
    font-size: clamp(2rem, 4.4vw, 3.2rem); color: #F5F1E8; line-height: 1.1;
}
.mk-ardas-desc {
    margin: 1.2rem auto 0; max-width: 46ch;
    font-size: 0.86rem; line-height: 1.8; color: rgba(245,241,232,0.6);
}
.mk-ardas-wall {
    position: relative; margin: 2.6rem 0 1.8rem; height: min(46vh, 380px);
    border: 1px solid rgba(212,175,55,0.16); border-radius: 2px;
    background: radial-gradient(ellipse at 50% 100%, rgba(201,162,39,0.08), transparent 70%);
    overflow: hidden; cursor: pointer;
}
.mk-ardas-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.mk-ardas-form {
    display: flex; gap: 0.8rem; justify-content: center; align-items: center;
    flex-wrap: wrap;
}
.mk-ardas-input {
    min-width: min(320px, 70vw); padding: 0.85rem 1.2rem;
    background: rgba(245,241,232,0.04); border: 1px solid rgba(212,175,55,0.28);
    border-radius: 2px; color: #F5F1E8;
    font-family: "Montserrat", sans-serif; font-size: 0.82rem; letter-spacing: 0.06em;
    outline: none; transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.mk-ardas-input::placeholder { color: rgba(245,241,232,0.35); }
.mk-ardas-input:focus { border-color: rgba(212,175,55,0.7); box-shadow: 0 0 24px rgba(201,162,39,0.18); }
.mk-ardas-submit {
    padding: 0.85rem 1.6rem; background: none;
    border: 1px solid rgba(212,175,55,0.6); border-radius: 2px;
    color: #D4AF37; cursor: pointer;
    font-family: "Montserrat", sans-serif; font-size: 0.62rem;
    letter-spacing: 0.34em; text-transform: uppercase;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.mk-ardas-submit:hover { background: rgba(201,162,39,0.14); box-shadow: 0 0 28px rgba(201,162,39,0.25); }
.mk-ardas-footer {
    margin-top: 1.6rem; font-size: 0.6rem; letter-spacing: 0.38em;
    text-transform: uppercase; color: rgba(245,241,232,0.45);
}
.mk-ardas-count { color: #D4AF37; font-size: 0.86rem; letter-spacing: 0.1em; margin-right: 0.6rem; }

/* ── Hukam of the Day ── */
.mk-hukam { max-width: 820px; margin: 0 auto; text-align: center; }
.mk-hukam-title {
    font-family: "Cormorant Garamond", Georgia, serif; font-weight: 300;
    font-size: clamp(2rem, 4.4vw, 3.2rem); color: #F5F1E8;
}
.mk-hukam-desc { margin: 1rem auto 0; max-width: 44ch; font-size: 0.86rem; line-height: 1.8; color: rgba(245,241,232,0.6); }
.mk-hukam-stage { margin: 3rem 0 1.4rem; }
.mk-hukam-line { margin: 0; opacity: 0; transform: translateY(18px); transition: opacity 1.1s ease, transform 1.1s ease; }
.mk-hukam.is-live .mk-hukam-line { opacity: 1; transform: none; }
.mk-hukam-pa {
    margin: 0; font-family: "Noto Serif Gurmukhi", serif;
    font-size: clamp(1.7rem, 3.6vw, 2.7rem); line-height: 1.7;
    color: rgba(212,175,55,0.94); text-shadow: 0 0 38px rgba(201,162,39,0.3);
}
.mk-hukam-en {
    margin-top: 1.4rem; font-family: "Cormorant Garamond", Georgia, serif;
    font-style: italic; font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    color: rgba(245,241,232,0.85);
}
.mk-hukam-angref {
    margin-top: 1.4rem; font-size: 0.58rem; letter-spacing: 0.42em;
    text-transform: uppercase; color: rgba(212,175,55,0.6);
}
.mk-hukam-footer { margin-top: 2rem; font-size: 0.72rem; color: rgba(245,241,232,0.35); }

/* ── Pahar clock ── */
.mk-pahar { max-width: 680px; margin: 0 auto; text-align: center; }
.mk-pahar-title {
    font-family: "Cormorant Garamond", Georgia, serif; font-weight: 300;
    font-size: clamp(2rem, 4.4vw, 3.2rem); color: #F5F1E8;
}
.mk-pahar-dial-wrap { margin: 2.6rem auto 0; display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.mk-pahar-dial { width: min(260px, 60vw); height: auto; }
.mk-pahar-arc { fill: none; stroke: rgba(245,241,232,0.22); stroke-width: 2; transition: stroke 0.8s ease; }
.mk-pahar-arc.is-now { stroke: #D4AF37; filter: drop-shadow(0 0 6px rgba(201,162,39,0.7)); }
.mk-pahar.is-amritvela .mk-pahar-arc.is-now { stroke: #E8C55A; }
.mk-pahar-needle { transform-origin: 100px 100px; transition: transform 1.2s cubic-bezier(0.22,0.61,0.36,1); }
.mk-pahar-needle line { stroke: rgba(212,175,55,0.9); stroke-width: 1.6; stroke-linecap: round; }
.mk-pahar-needle circle { fill: #D4AF37; }
.mk-pahar-name { font-family: "Noto Serif Gurmukhi", serif; font-size: 1.7rem; color: rgba(212,175,55,0.92); }
.mk-pahar-translit {
    margin-top: 0.4rem; font-size: 0.58rem; letter-spacing: 0.4em;
    text-transform: uppercase; color: rgba(245,241,232,0.55);
}
.mk-pahar-desc { margin: 2rem auto 0; max-width: 46ch; font-size: 0.86rem; line-height: 1.8; color: rgba(245,241,232,0.6); }

/* ── Countdown ── */
.mk-countdown { max-width: 720px; margin: 0 auto; text-align: center; }
.mk-cd-title {
    font-family: "Cormorant Garamond", Georgia, serif; font-weight: 300;
    font-size: clamp(2rem, 4.4vw, 3.2rem); color: #F5F1E8;
}
.mk-cd-body {
    margin-top: 2.6rem; display: flex; align-items: center; justify-content: center;
    gap: clamp(1.4rem, 5vw, 3.4rem); flex-wrap: wrap;
}
.mk-cd-ring-wrap { position: relative; width: 130px; height: 130px; }
.mk-cd-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.mk-cd-ring-track { fill: none; stroke: rgba(245,241,232,0.1); stroke-width: 3; }
.mk-cd-ring-value {
    fill: none; stroke: #C9A227; stroke-width: 3; stroke-linecap: round;
    transition: stroke-dashoffset 1s linear;
}
.mk-cd-note {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font-size: 0.56rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(212,175,55,0.8); padding: 1rem; text-align: center;
}
.mk-cd-numbers { display: flex; gap: 1.6rem; }
.mk-cd-cell { text-align: center; }
.mk-cd-cell span {
    display: block; font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem); color: #F5F1E8; font-variant-numeric: tabular-nums;
}
.mk-cd-cell label {
    font-size: 0.54rem; letter-spacing: 0.34em; text-transform: uppercase;
    color: rgba(212,175,55,0.65);
}
.mk-cd-event {
    margin-top: 2rem; font-family: "Cormorant Garamond", Georgia, serif;
    font-style: italic; font-size: 1.15rem; color: rgba(245,241,232,0.75);
}

/* ── Mala ── */
.mk-mala { max-width: 560px; margin: 0 auto; text-align: center; }
.mk-mala-title {
    font-family: "Cormorant Garamond", Georgia, serif; font-weight: 300;
    font-size: clamp(2rem, 4.4vw, 3rem); color: #F5F1E8;
}
.mk-mala-stage { position: relative; margin: 2.4rem auto 1.4rem; width: min(340px, 78vw); aspect-ratio: 1; }
.mk-mala-canvas { width: 100%; height: 100%; display: block; cursor: pointer; touch-action: manipulation; }
.mk-mala-count {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    pointer-events: none; font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.5rem; color: rgba(212,175,55,0.9); letter-spacing: 0.12em;
}
.mk-mala-message {
    min-height: 2.6em; font-size: 0.62rem; letter-spacing: 0.34em;
    text-transform: uppercase; color: rgba(245,241,232,0.55);
    transition: color 0.6s ease;
}
.mk-mala-message.is-done { color: #D4AF37; text-shadow: 0 0 22px rgba(201,162,39,0.4); }
.mk-mala-reset {
    margin-top: 1.4rem; padding: 0.7rem 1.4rem; background: none;
    border: 1px solid rgba(245,241,232,0.2); border-radius: 2px;
    color: rgba(245,241,232,0.5); cursor: pointer;
    font-family: "Montserrat", sans-serif; font-size: 0.56rem;
    letter-spacing: 0.34em; text-transform: uppercase;
    transition: color 0.3s ease, border-color 0.3s ease;
}
.mk-mala-reset:hover { color: #D4AF37; border-color: rgba(212,175,55,0.5); }

/* ── Shabad pangti ── */
.mk-shabad { max-width: 860px; margin: 0 auto; }
.mk-shabad-title {
    text-align: center; font-family: "Cormorant Garamond", Georgia, serif; font-weight: 300;
    font-size: clamp(2rem, 4.4vw, 3.2rem); color: #F5F1E8;
}
.mk-shabad-lines { margin-top: 3rem; display: flex; flex-direction: column; gap: 3rem; }
.mk-shabad-line { position: relative; padding-left: 2rem; }
.mk-shabad-line::before {
    content: ""; position: absolute; left: 0; top: 0.6em; bottom: 0.6em; width: 2px;
    background: linear-gradient(rgba(212,175,55,0), rgba(212,175,55,0.55), rgba(212,175,55,0));
    transform: scaleY(0); transform-origin: top; transition: transform 1.2s ease;
}
.mk-shabad-line.is-read::before { transform: scaleY(1); }
.mk-shabad-pa {
    font-family: "Noto Serif Gurmukhi", serif; line-height: 1.8;
    font-size: clamp(1.4rem, 2.8vw, 2.1rem); color: rgba(245,241,232,0.42);
    transition: color 1.4s ease, text-shadow 1.4s ease;
}
.mk-shabad-line.is-read .mk-shabad-pa { color: rgba(212,175,55,0.95); text-shadow: 0 0 30px rgba(201,162,39,0.28); }
.mk-shabad-translit {
    margin-top: 0.5rem; font-size: 0.78rem; letter-spacing: 0.14em;
    color: rgba(245,241,232,0.4); font-style: italic;
}
.mk-shabad-en { margin-top: 0.3rem; font-size: 0.95rem; color: rgba(245,241,232,0.65); }
.mk-shabad-source {
    margin-top: 3rem; text-align: right; font-size: 0.6rem; letter-spacing: 0.4em;
    text-transform: uppercase; color: rgba(212,175,55,0.55);
}

/* ── Gurpurab ribbon ── */
.mk-gurpurab { max-width: 1000px; margin: 0 auto; }
.mk-gurpurab-title {
    text-align: center; font-family: "Cormorant Garamond", Georgia, serif; font-weight: 300;
    font-size: clamp(2rem, 4.4vw, 3.2rem); color: #F5F1E8;
}
.mk-gurpurab-desc { margin: 1rem auto 0; max-width: 46ch; text-align: center; font-size: 0.86rem; line-height: 1.8; color: rgba(245,241,232,0.6); }
.mk-gurpurab-ribbon {
    margin-top: 2.8rem; display: flex; gap: 1.4rem;
    overflow-x: auto; padding-bottom: 1rem;
    scrollbar-width: thin; scrollbar-color: rgba(212,175,55,0.4) transparent;
}
.mk-gurpurab-item {
    flex: 0 0 200px; padding: 1.6rem 1.3rem; text-align: center;
    border: 1px solid rgba(245,241,232,0.1); border-radius: 2px;
    opacity: 0; transform: translateY(14px);
    transition: opacity 0.9s ease, transform 0.9s ease, border-color 0.9s ease;
}
.mk-gurpurab.is-live .mk-gurpurab-item { opacity: 1; transform: none; }
.mk-gurpurab-item:nth-child(2) { transition-delay: 0.12s; }
.mk-gurpurab-item:nth-child(3) { transition-delay: 0.24s; }
.mk-gurpurab-item:nth-child(4) { transition-delay: 0.36s; }
.mk-gurpurab-item.is-near { border-color: rgba(212,175,55,0.55); box-shadow: 0 0 34px rgba(201,162,39,0.14); }
.mk-gurpurab-flame {
    width: 8px; height: 8px; margin: 0 auto 1rem; border-radius: 50%;
    background: rgba(245,241,232,0.25); transition: background 0.9s ease, box-shadow 0.9s ease;
}
.mk-gurpurab-item.is-near .mk-gurpurab-flame {
    background: #D4AF37; box-shadow: 0 0 16px rgba(201,162,39,0.8), 0 0 34px rgba(201,162,39,0.4);
    animation: mkGurpurabFlicker 2.4s ease infinite;
}
@keyframes mkGurpurabFlicker { 50% { box-shadow: 0 0 10px rgba(201,162,39,0.6), 0 0 22px rgba(201,162,39,0.3); } }
.mk-gurpurab-pa { font-family: "Noto Serif Gurmukhi", serif; font-size: 1.3rem; color: rgba(212,175,55,0.9); }
.mk-gurpurab-en {
    margin-top: 0.4rem; font-family: "Cormorant Garamond", Georgia, serif;
    font-style: italic; font-size: 1.05rem; color: rgba(245,241,232,0.85);
}
.mk-gurpurab-date {
    margin-top: 0.8rem; font-size: 0.56rem; letter-spacing: 0.34em;
    text-transform: uppercase; color: rgba(245,241,232,0.45);
}
.mk-gurpurab-note { margin-top: 0.5rem; font-size: 0.72rem; line-height: 1.6; color: rgba(245,241,232,0.4); }
.mk-gurpurab-in { margin-top: 0.7rem; min-height: 1.2em; font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: #D4AF37; }

/* ── Ik scroll seal ── */
.mk-ik { display: flex; justify-content: center; padding: 3rem 0; }
.mk-ik svg { width: var(--mk-ik-size, 220px); height: var(--mk-ik-size, 220px); }
.mk-ik-track { fill: none; stroke: rgba(245,241,232,0.07); stroke-width: 1; }
.mk-ik-circle {
    fill: none; stroke: #C9A227; stroke-width: 2; stroke-linecap: round;
    filter: drop-shadow(0 0 8px rgba(201,162,39,0.45));
}
.mk-ik-mono {
    font-family: "Noto Serif Gurmukhi", serif; font-size: 42px;
    fill: rgba(212,175,55,0.92); opacity: 0; transition: opacity 1s ease;
}

@media (prefers-reduced-motion: reduce) {
    .mk-hukam-line, .mk-gurpurab-item { transition: none; opacity: 1; transform: none; }
    .mk-pahar-needle { transition: none; }
    .mk-shabad-line::before, .mk-shabad-pa { transition: none; }
    .mk-gurpurab-item.is-near .mk-gurpurab-flame { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   CONCEPT PLAYERS — cinema · gallery · reader  (v7.12)
   Three rooms beyond the communion player. Dark canvas always;
   gold hairlines; nothing auto-plays; every song and film begins
   with a hand.
   ═══════════════════════════════════════════════════════════════════ */

body.mk-lock { overflow: hidden; }

/* ── 1 · the cinema ─────────────────────────────────────────────── */
.mk-cinema-stage {
    position: relative; aspect-ratio: 16 / 9; background: #000;
    border: 1px solid rgba(201, 162, 39, 0.22); overflow: hidden; isolation: isolate;
}
.mk-cinema-stage:fullscreen { border: none; }
.mkp-screen, .mkp-screen iframe, .mkp-screen video {
    position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #000;
}
.mkp-screen video { object-fit: contain; }
.mkp-bars i {
    position: absolute; left: 0; right: 0; height: 0; background: #000; z-index: 2;
    transition: height 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mkp-bars i.t { top: 0; } .mkp-bars i.b { bottom: 0; }
.mk-cinema-stage.is-playing .mkp-bars i { height: 6.5%; }
.mkp-poster {
    position: absolute; inset: 0; z-index: 4; border: 0; cursor: pointer;
    background-size: cover; background-position: center; background-color: #060409;
    display: grid; place-items: center; transition: opacity 1s ease;
}
.mk-cinema-stage.is-live .mkp-poster { opacity: 0; pointer-events: none; }
.mkp-sigil {
    width: 74px; height: 74px; border-radius: 50%; border: 1px solid #C9A227;
    position: relative; transition: box-shadow 0.6s ease, transform 0.6s ease;
}
.mkp-sigil::after {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-40%, -50%);
    border-style: solid; border-width: 11px 0 11px 19px;
    border-color: transparent transparent transparent #C9A227;
}
.mkp-poster:hover .mkp-sigil { box-shadow: 0 0 34px rgba(201, 162, 39, 0.45); transform: scale(1.06); }
.mkp-chrome {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 5;
    padding: 2.6rem 1.6rem 1.1rem; display: flex; flex-direction: column; gap: 0.7rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
    transition: opacity 0.6s ease;
}
.mk-cinema-stage.is-idle .mkp-chrome { opacity: 0; }
.mk-cinema-stage.is-idle { cursor: none; }
.mkp-plate {
    display: flex; justify-content: space-between; gap: 1rem;
    font-size: 0.58rem; letter-spacing: 0.34em; text-transform: uppercase;
    color: rgba(245, 241, 232, 0.78);
}
.mkp-kicker { color: #C9A227; }
.mkp-row { display: flex; align-items: center; gap: 1rem; }
.mkp-play, .mkp-full {
    width: 40px; height: 40px; flex: none; border-radius: 50%; cursor: pointer;
    border: 1px solid rgba(201, 162, 39, 0.6); background: rgba(0, 0, 0, 0.35);
    color: #C9A227; font-size: 0.7rem; transition: background 0.4s ease, color 0.4s ease;
}
.mkp-play:hover, .mkp-full:hover { background: rgba(201, 162, 39, 0.16); }
.mkp-seek { flex: 1; height: 2px; background: rgba(245, 241, 232, 0.22); position: relative; cursor: pointer; }
.mkp-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: #C9A227; }
.mkp-time {
    font-size: 0.62rem; letter-spacing: 0.18em; color: rgba(245, 241, 232, 0.72);
    font-variant-numeric: tabular-nums; white-space: nowrap;
}
.mk-cinema-frame-img { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid rgba(201, 162, 39, 0.22); }

/* ── 2 · the gallery ────────────────────────────────────────────── */
.mk-gallery-content { position: relative; }
.mk-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 960px) { .mk-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.mkg-frame {
    position: relative; aspect-ratio: 4 / 3; overflow: hidden; cursor: pointer;
    border: 1px solid rgba(201, 162, 39, 0.2); background: #0C0A12; padding: 0;
}
.mkg-frame img {
    width: 100%; height: 100%; object-fit: cover; opacity: 0.85;
    transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}
.mkg-frame:hover img { transform: scale(1.06); opacity: 1; }
.mkg-cap {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 0.9rem 0.7rem;
    font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase;
    color: #F5F1E8; text-align: left;
    background: linear-gradient(transparent, rgba(12, 10, 18, 0.9));
}
.mkg-sigil {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 52px; height: 52px; border-radius: 50%; border: 1px solid #C9A227;
    background: rgba(12, 10, 18, 0.55);
}
.mkg-sigil::after {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-40%, -50%);
    border-style: solid; border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent #C9A227;
}

/* gallery veil player */
.mk-gallery-veil {
    position: fixed; inset: 0; z-index: 1200; display: none;
    flex-direction: column; background: rgba(12, 10, 18, 0.97);
}
.mk-gallery-veil.open { display: flex; }
.mkgv-thread { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: rgba(245, 241, 232, 0.1); }
.mkgv-thread i { display: block; height: 100%; width: 0; background: #C9A227; transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.mkgv-close {
    position: absolute; top: 1.3rem; right: 1.8rem; z-index: 5; cursor: pointer;
    background: none; border: none; color: rgba(245, 241, 232, 0.6);
    font-size: 0.58rem; letter-spacing: 0.4em; text-transform: uppercase;
}
.mkgv-close:hover { color: #C9A227; }
.mkgv-stage { flex: 1; position: relative; display: grid; place-items: center; overflow: hidden; padding: 3.4rem 4vw 0; }
.mkgv-img {
    max-width: 88vw; max-height: 72vh; border: 1px solid rgba(201, 162, 39, 0.25);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}
.mkgv-img.drift-a { animation: mkgvDriftA 11s ease-in-out infinite alternate; }
.mkgv-img.drift-b { animation: mkgvDriftB 11s ease-in-out infinite alternate; }
@keyframes mkgvDriftA { from { transform: scale(1.02) translate(-0.8%, 0.4%); } to { transform: scale(1.09) translate(0.8%, -0.6%); } }
@keyframes mkgvDriftB { from { transform: scale(1.09) translate(0.7%, 0.5%); } to { transform: scale(1.02) translate(-0.7%, -0.4%); } }
.mkgv-video { max-width: 88vw; max-height: 72vh; border: 1px solid rgba(201, 162, 39, 0.25); background: #000; }
.mkgv-vplay {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 64px; height: 64px; border-radius: 50%; cursor: pointer;
    border: 1px solid #C9A227; background: rgba(12, 10, 18, 0.6); color: #C9A227; font-size: 0.9rem;
}
.mkgv-embed { width: min(88vw, 1100px); aspect-ratio: 16 / 9; border: 1px solid rgba(201, 162, 39, 0.25); }
.mkgv-under {
    display: flex; justify-content: space-between; align-items: baseline; gap: 2rem;
    padding: 1.2rem 4vw 0.4rem;
}
.mkgv-cap .pa {
    display: block; font-family: 'Noto Serif Gurmukhi', serif; font-size: 1.05rem;
    color: #F5F1E8; margin-bottom: 0.3rem;
}
.mkgv-cap .en {
    font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic;
    font-size: 1rem; color: #C9A227;
}
.mkgv-idx { font-size: 0.62rem; letter-spacing: 0.3em; color: rgba(245, 241, 232, 0.55); font-variant-numeric: tabular-nums; }
.mkgv-nav { display: flex; justify-content: center; align-items: center; gap: 2.2rem; padding: 0.8rem 0 1.8rem; }
.mkgv-prev, .mkgv-next {
    width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
    border: 1px solid rgba(201, 162, 39, 0.5); background: none; color: #C9A227; font-size: 0.9rem;
    transition: background 0.4s ease;
}
.mkgv-prev:hover, .mkgv-next:hover { background: rgba(201, 162, 39, 0.14); }
.mkgv-auto {
    background: none; border: none; cursor: pointer;
    font-size: 0.56rem; letter-spacing: 0.42em; text-transform: uppercase;
    color: rgba(245, 241, 232, 0.45); padding: 0.6rem 0.2rem; border-bottom: 1px solid transparent;
}
.mkgv-auto.is-on { color: #C9A227; border-bottom-color: #C9A227; }

/* ── 3 · the reader ─────────────────────────────────────────────── */
.mk-book-open {
    display: inline-block; margin-top: 0.9rem; cursor: pointer;
    background: none; border: 1px solid rgba(201, 162, 39, 0.55); border-radius: 999px;
    color: #C9A227; font-size: 0.58rem; letter-spacing: 0.34em; text-transform: uppercase;
    padding: 0.55rem 1.3rem; text-decoration: none;
    transition: background 0.4s ease, color 0.4s ease;
}
.mk-book-open:hover { background: rgba(201, 162, 39, 0.14); }
.mk-reader-veil {
    position: fixed; inset: 0; z-index: 1200; display: none;
    flex-direction: column; background: #0C0A12;
}
.mk-reader-veil.open { display: flex; }
.mkr-top {
    display: flex; align-items: center; gap: 1.6rem;
    padding: 1.2rem 2.2rem; border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}
.mkr-title {
    font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase; color: #C9A227;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 40vw;
}
.mkr-thread { flex: 1; height: 2px; background: rgba(245, 241, 232, 0.1); position: relative; }
.mkr-thread i { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: #C9A227; transition: width 0.7s ease; }
.mkr-close {
    background: none; border: none; cursor: pointer;
    color: rgba(245, 241, 232, 0.6); font-size: 0.58rem; letter-spacing: 0.4em; text-transform: uppercase;
}
.mkr-close:hover { color: #C9A227; }
.mkr-body {
    flex: 1; position: relative; margin: 1.8rem auto; width: min(900px, 92vw);
    border: 1px solid rgba(201, 162, 39, 0.25); background: #060409; overflow: hidden;
}
.mkr-pdf {
    position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #060409;
}
.mkr-page {
    height: 100%; overflow-y: auto; padding: 3rem 3.6rem;
    font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.12rem; line-height: 2.1;
    color: #F5F1E8;
}
.mkr-page p { margin: 0 0 1.6rem; }
.mkr-page.fade { animation: mkrFade 0.9s ease; }
@keyframes mkrFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.mkr-bar { display: flex; justify-content: center; align-items: center; gap: 1.8rem; padding: 0 0 1.6rem; }
.mkr-prev, .mkr-next {
    width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
    border: 1px solid rgba(201, 162, 39, 0.5); background: none; color: #C9A227; font-size: 0.85rem;
    transition: background 0.4s ease;
}
.mkr-prev:hover, .mkr-next:hover { background: rgba(201, 162, 39, 0.14); }
.mkr-idx { font-size: 0.62rem; letter-spacing: 0.3em; color: rgba(245, 241, 232, 0.6); font-variant-numeric: tabular-nums; }
.mkr-zoom { display: inline-flex; gap: 0.5rem; }
.mkr-zin, .mkr-zout {
    width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
    border: 1px solid rgba(201, 162, 39, 0.35); background: none; color: #C9A227; font-size: 0.85rem;
}

@media (prefers-reduced-motion: reduce) {
    .mkgv-img.drift-a, .mkgv-img.drift-b { animation: none; }
    .mkr-page.fade { animation: none; }
    .mkp-bars i { transition: none; }
}

/* ── component field-guide annotations (Components page) ────────── */
.mk-note {
    max-width: 780px; margin: 2.2rem auto; padding: 1.5rem 2rem;
    border-left: 1px solid rgba(201, 162, 39, 0.45);
    background: rgba(201, 162, 39, 0.04);
    color: rgba(245, 241, 232, 0.78); font-size: 0.84rem; line-height: 1.95;
    font-family: 'Montserrat', system-ui, sans-serif; font-weight: 300;
}
.mk-note h4 {
    margin: 0 0 0.7rem; color: #C9A227;
    font-size: 0.6rem; letter-spacing: 0.36em; text-transform: uppercase; font-weight: 500;
}
.mk-note p { margin: 0 0 0.6rem; }
.mk-note b { color: #F5F1E8; font-weight: 500; }
.mk-note ul { margin: 0.4rem 0 0; padding-left: 1.15rem; }
.mk-note li { margin: 0.3rem 0; }
.mk-note code { color: #C9A227; font-size: 0.78rem; }
